/* Base Layout and Utilities */
body {
    padding-top: 70px; /* Accounts for fixed navbar */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
}

main {
    flex-shrink: 0;
    flex-grow: 1;
}

.hidden {
    display: none !important;
}

/* Footer Styling */
.footer {
    padding: 20px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

/* Shared UI elements */
.badge-role {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
}

.border-dashed {
    border: 1px dashed #ced4da !important;
}
.comments-section .card {
    background-color: #fcfcfc;
}
