/* Forum Archive Styling */

.forum-channels .card {
    transition: transform 0.2s;
}

.forum-channels .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.forum-threads table {
    background-color: #fff;
}

.forum-threads table thead {
    background-color: #f8f9fa;
}

.forum-threads table a {
    color: #0067c8;
    text-decoration: none;
}

.forum-threads table a:hover {
    text-decoration: underline;
}

.forum-post {
    margin-bottom: 2rem;
}

.forum-post .card-header {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.forum-post .post-content {
    line-height: 1.6;
    color: #333;
}

.forum-post .post-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.forum-post .post-content blockquote {
    border-left: 4px solid #0067c8;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #666;
}

.forum-post .post-content pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
}

.forum-post .post-content code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: monospace;
}

.forum-post .post-content a {
    color: #0067c8;
    text-decoration: underline;
}

.forum-post .post-content a:hover {
    color: #0056b3;
}

.forum-post .post-attachments {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.user-profile .card {
    margin-bottom: 2rem;
}

.user-profile .card-header {
    background-color: #0067c8;
    color: #fff;
}

.user-profile .card-header h2,
.user-profile .card-header h3 {
    margin: 0;
    color: #fff;
}

.user-profile ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.user-profile ul li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .forum-threads table {
        font-size: 0.9rem;
    }
    
    .forum-post .card-header .row {
        flex-direction: column;
    }
    
    .forum-post .card-header .text-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
}

