.blog-list {
    text-align: left;
    max-width: 100%;
}

.blog-post {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid rgba(245, 194, 231, 0.2);
    border-radius: 6px;
    background: rgba(245, 194, 231, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    border-color: rgba(245, 194, 231, 0.4);
    background: rgba(245, 194, 231, 0.05);
    transform: translateY(-2px);
}

.blog-post-title {
    color: #f5c2e7;
    font-size: 18px;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
}

.blog-post-title:hover {
    color: #cba6f7;
}

.blog-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #a6adc8;
}

.blog-post-description {
    color: #cdd6f4;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.blog-post-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-tag {
    background: rgba(203, 166, 247, 0.2);
    color: #cba6f7;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    border: 1px solid rgba(203, 166, 247, 0.3);
}

.blog-navigation {
    text-align: left;
    margin-bottom: 20px;
}

.nav-button {
    background: rgba(245, 194, 231, 0.1);
    border: 1px solid #f5c2e7;
    color: #f5c2e7;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #f5c2e7;
    color: #1e1e2e;
}

.blog-post-content {
    text-align: left;
    line-height: 1.7;
}

.blog-post-content h1 {
    color: #f5c2e7;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(245, 194, 231, 0.3);
    padding-bottom: 10px;
}

.blog-post-content h2 {
    color: #f5c2e7;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(245, 194, 231, 0.2);
    padding-bottom: 5px;
}

.blog-post-content h3 {
    color: #cba6f7;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.blog-post-content h4 {
    color: #cba6f7;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.blog-post-content h5,
.blog-post-content h6 {
    color: #a6adc8;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 8px;
}

.blog-post-content p {
    color: #cdd6f4;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.blog-post-content a {
    color: #cba6f7;
    text-decoration: none;
    border-bottom: 1px dotted #cba6f7;
    transition: all 0.3s ease;
}

.blog-post-content a:hover {
    color: #f5c2e7;
    border-bottom-color: #f5c2e7;
}

.blog-post-content strong {
    color: #f5c2e7;
    font-weight: bold;
}

.blog-post-content em {
    color: #fab387;
    font-style: italic;
}

.blog-post-content del {
    color: #a6adc8;
    text-decoration: line-through;
}

.blog-post-content code {
    background: rgba(30, 30, 46, 0.8);
    color: #f5c2e7;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    border: 1px solid rgba(245, 194, 231, 0.2);
}

.blog-post-content pre {
    background: rgba(30, 30, 46, 0.9);
    border: 1px solid rgba(245, 194, 231, 0.2);
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
    overflow-x: auto;
    position: relative;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    border: none;
    font-size: 14px;
    line-height: 1.5;
}

.blog-post-content blockquote {
    border-left: 3px solid #cba6f7;
    margin: 20px 0;
    padding-left: 15px;
    color: #a6adc8;
    font-style: italic;
    background: rgba(203, 166, 247, 0.05);
    padding: 15px 15px 15px 20px;
    border-radius: 0 4px 4px 0;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 15px 0;
    padding-left: 25px;
    color: #cdd6f4;
}

.blog-post-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(30, 30, 46, 0.3);
    border: 1px solid rgba(245, 194, 231, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.blog-post-content th,
.blog-post-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(245, 194, 231, 0.1);
}

.blog-post-content th {
    background: rgba(245, 194, 231, 0.1);
    color: #f5c2e7;
    font-weight: bold;
}

.blog-post-content td {
    color: #cdd6f4;
}

.blog-post-content tr:last-child td {
    border-bottom: none;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid rgba(245, 194, 231, 0.2);
    margin: 15px 0;
    display: block;
}

.blog-post-content hr {
    border: none;
    border-top: 1px solid rgba(245, 194, 231, 0.3);
    margin: 30px 0;
}

.loading {
    color: #a6adc8;
    font-style: italic;
    text-align: center;
    padding: 40px 0;
}

.post-metadata {
    background: rgba(245, 194, 231, 0.05);
    border: 1px solid rgba(245, 194, 231, 0.2);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 25px;
}

.post-metadata h1 {
    color: #f5c2e7 !important;
    margin-bottom: 10px !important;
    border-bottom: none !important;
    font-size: 26px !important;
}

.post-metadata .meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 13px;
    color: #a6adc8;
}

.post-metadata .meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-metadata .post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.post-metadata .post-tag {
    background: rgba(203, 166, 247, 0.2);
    color: #cba6f7;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(203, 166, 247, 0.3);
}
