:root {
    --bg-primary: #f4f4f4;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e9ecef;
    --text-primary: #333333;
    --text-secondary: #666666;
    --accent: #4CAF50;
    --accent-hover: #388E3C;
    --accent-glow: rgba(76, 175, 80, 0.15);
    --border-color: #ddd;
    --danger: #e74c3c;
    --warning: #e67e22;
    --success: #4CAF50;
    --font-heading: 'Segoe UI', Arial, sans-serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --glass-bg: #ffffff;
    --glass-border: #ddd;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-glow: none;
}

body.forum-body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    line-height: 1.6;
}

/* Header & Navigation */
.forum-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.forum-header-top {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.forum-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.forum-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
}

.forum-nav-left,
.forum-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.forum-nav a, .forum-nav span {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.forum-nav a:hover {
    color: var(--accent);
}

.forum-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.notif-bell {
    position: relative;
    display: inline-flex;
}

.notif-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--danger);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: bold;
    line-height: 1;
}

.nav-btn {
    background-color: var(--accent);
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background-color: var(--accent-hover);
}

.nav-btn-secondary {
    border: 1px solid #ccc;
    background-color: transparent;
    color: var(--text-primary) !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-btn-secondary:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

/* Layout Containers */
.forum-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Cards */
.forum-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease;
}

.forum-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.forum-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 8px;
    color: #2c3e50;
}

.forum-card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Group Listing (flat list, mobile-friendly) */
.group-grid {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    width: 100%;
}

.community-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.community-section-title i {
    color: var(--accent);
}

/* Post list design (flat list, mobile-friendly) */
.post-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.post-list .post-row {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
}

.post-list .post-row:last-child {
    border-bottom: none;
}

.post-list .post-row:hover {
    background: #f8f9fa;
    box-shadow: none;
}

.post-row {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.post-row:hover {
    background: #f8f9fa;
    border-color: #bbb;
}

.post-info-main {
    flex: 1;
}

.post-row-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #2c3e50;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: var(--text-secondary);
}

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

.post-author-badge {
    background: rgba(52, 152, 219, 0.15);
    color: #2980b9;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-danger {
    background-color: var(--danger);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.btn-danger:hover {
    background-color: #c0392b;
}

.btn-success {
    background-color: var(--success);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.btn-success:hover {
    background-color: #388E3C;
}

/* Auth Pages */
.auth-container {
    max-width: 450px;
    margin: 80px auto;
    padding: 0 20px;
}

.social-login-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ddd;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
}

.btn-google {
    background-color: white;
    color: #1f2937;
}

.btn-google:hover {
    background-color: #f3f4f6;
}

.btn-facebook {
    background-color: #1877f2;
    color: white;
    border: none;
}

.btn-facebook:hover {
    background-color: #166fe5;
}

.btn-sandbox {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
}

.btn-sandbox:hover {
    opacity: 0.9;
}

/* Alert Boxes */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

/* Post Detail page */
.post-detail-header {
    margin-bottom: 20px;
}

.post-detail-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.25;
    color: #2c3e50;
}

.post-detail-content {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-bottom: 30px;
}

/* Comments section */
.comments-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
}

.comment-card {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

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

/* Badge System */
.badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

.badge-approved {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Moderation Admin Queue Styles */
.mod-section {
    margin-top: 40px;
}

.mod-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.mod-table th, .mod-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.mod-table th {
    background-color: #f0f0f0;
    color: #555;
    font-weight: 600;
    font-size: 13px;
}

.mod-table tr:last-child td {
    border-bottom: none;
}

.mod-table td {
    font-size: 14px;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Avatar */
.avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

/* Hero Section */
.forum-hero {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.forum-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.2em;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    display: inline-block;
}

.forum-hero p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ccc;
}

/* Post & Comment Voting */
.vote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-right: 18px;
    user-select: none;
}

.vote-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.vote-btn:hover {
    color: var(--text-primary);
    background-color: #f0f0f0;
}

.vote-btn.active-up {
    color: var(--accent);
}

.vote-btn.active-down {
    color: var(--danger);
}

.vote-score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

/* Photo Attachments */
.attachment-container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    border: 1px solid #ddd;
    background: #f8f9fa;
}

.attachment-img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

.attachment-img:hover {
    opacity: 0.9;
}

/* Lightbox Preview Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--accent);
}

/* Post Reactions */
.reaction-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.react-btn-container {
    position: relative;
    display: inline-block;
}

.btn-react-trigger {
    background: #f0f0f0;
    border: 1px solid #ddd;
    color: #555;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-react-trigger:hover {
    background: #e0e0e0;
    color: var(--text-primary);
    border-color: #bbb;
}

.reactions-picker-dock {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 42px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 6px 12px;
    display: flex;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 50;
    transition: all 0.2s ease;
    transform: scale(0.9) translateY(10px);
}

.react-btn-container:hover .reactions-picker-dock {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateY(0);
}

.reaction-emoji-btn {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 0;
    line-height: 1;
}

.reaction-emoji-btn:hover {
    transform: scale(1.3);
}

.reactions-summary-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reaction-pill {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.reaction-pill:hover {
    background: #eee;
    border-color: #bbb;
    color: var(--text-primary);
}

.reaction-pill.user-active {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: #388E3C;
}

/* Image upload */
.image-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border: 1px dashed #ccc;
    padding: 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.image-upload-wrapper:hover {
    border-color: var(--accent);
    background: rgba(76, 175, 80, 0.03);
}

.image-upload-btn-label {
    background: #e9ecef;
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
    border: 1px solid #ccc;
}

.image-upload-btn-label:hover {
    background: #ddd;
}

/* Group Row (index page) */
.group-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-decoration: none;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 18px 20px;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.2s ease;
}

.group-card:last-child {
    border-bottom: none;
}

.group-card:hover {
    background: #f8f9fa;
}

/* =============================================
   MOBILE-FIRST RESPONSIVE STYLES
   ============================================= */

@media (max-width: 768px) {

    .forum-header-top {
        padding: 10px 12px;
    }

    .forum-logo {
        font-size: 17px !important;
    }

    .forum-nav {
        padding: 6px 12px;
    }

    .forum-nav a, .forum-nav span {
        font-size: 13px !important;
    }

    .forum-container {
        margin: 16px auto !important;
        padding: 0 12px !important;
    }

    .forum-hero {
        padding: 24px 16px !important;
        margin-bottom: 20px !important;
    }

    .forum-hero h1 {
        font-size: 24px !important;
    }

    .forum-hero p {
        font-size: 14px !important;
    }

    .forum-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .sidebar-forum-content .forum-card {
        position: static !important;
    }

    .community-section-title {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .forum-card {
        padding: 16px !important;
        margin-bottom: 16px;
    }

    .forum-card:hover {
        transform: none;
    }

    .group-card {
        padding: 16px !important;
    }

    .group-card:hover {
        transform: none;
    }

    .forum-card-title {
        font-size: 17px;
    }

    .forum-card form[action="index.php"],
    .forum-card form[action="group.php"] {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .post-row {
        padding: 14px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }

    .post-row:hover {
        transform: none;
    }

    .post-row-title {
        font-size: 15px !important;
    }

    .post-row > div[style*="text-align: right"] {
        margin-left: 0 !important;
        justify-content: flex-start !important;
    }

    .post-meta {
        flex-wrap: wrap;
        gap: 8px !important;
    }

    .post-detail-title {
        font-size: 22px !important;
    }

    .post-detail-content {
        font-size: 15px;
    }

    .post-vote-wrapper {
        flex-direction: column !important;
    }

    .comment-vote-wrapper {
        flex-direction: column !important;
    }

    .vote-container {
        flex-direction: row !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 8px;
        gap: 8px !important;
    }

    .nested-replies {
        margin-left: 16px !important;
        padding-left: 10px !important;
    }

    .comments-section {
        margin-left: 0 !important;
    }

    .comments-title {
        font-size: 17px;
        margin-top: 24px;
    }

    .comment-card {
        padding: 14px !important;
    }

    .comment-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px;
    }

    #reply-form-card,
    .forum-card.empty-state,
    .forum-card[style*="margin-left: 48px"] {
        margin-left: 0 !important;
    }

    .comments-section > div[style*="margin-left: 55px"] {
        margin-left: 20px !important;
        padding-left: 10px !important;
    }

    .reaction-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .reactions-picker-dock {
        bottom: auto;
        top: -50px;
    }

    .reaction-emoji-btn {
        font-size: 22px;
    }

    .breadcrumbs {
        flex-wrap: wrap;
        font-size: 12px;
        margin-bottom: 16px;
        gap: 4px;
    }

    .badge {
        font-size: 9px !important;
        padding: 2px 5px !important;
    }

    .auth-container {
        margin: 24px auto;
        padding: 0 12px;
    }

    .mod-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mod-table th, .mod-table td {
        padding: 10px 8px;
        font-size: 12px;
        white-space: nowrap;
    }

    .action-buttons {
        flex-direction: column;
        gap: 4px;
    }

    .btn-primary {
        padding: 10px 18px;
        font-size: 14px;
        text-align: center;
    }

    .auth-container .btn-primary {
        width: 100%;
    }

    .nav-btn, .nav-btn-secondary {
        padding: 8px 14px !important;
        font-size: 14px;
    }

    .post-detail-header div[style*="justify-content: space-between"] {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .forum-card[style*="justify-content: space-between"] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .attachment-img {
        max-height: 250px;
    }

    .lightbox-content {
        max-width: 96%;
    }

    .lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 28px;
    }

    footer {
        margin-top: 40px !important;
        padding: 24px 12px !important;
    }

    .image-upload-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-input {
        font-size: 16px;
        padding: 12px;
    }

    input.form-input, select.form-input, textarea.form-input {
        font-size: 16px;
    }

    .forum-container[style*="max-width: 750px"],
    .forum-container[style*="max-width: 800px"],
    .forum-container[style*="max-width: 900px"] {
        max-width: 100% !important;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .forum-logo {
        font-size: 14px !important;
    }

    .forum-hero h1 {
        font-size: 20px !important;
    }

    .post-detail-title {
        font-size: 19px !important;
    }

    .community-section-title {
        font-size: 16px;
    }

    .forum-card {
        padding: 12px !important;
    }

    .comment-card {
        padding: 10px !important;
    }
}
