* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    position: relative;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.ai-assistant-intro {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
    border: 1px solid rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.ai-assistant-title {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ai-assistant-text {
    color: #5a6c7d;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.header p {
    color: #5a6c7d;
    font-size: 1.1rem;
}

.upload-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.drop-zone {
    border: 3px dashed #bdc3c7;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fbfcfd;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.drop-zone:hover {
    border-color: #3498db;
    background: #f4f8fb;
    transform: translateY(-2px);
}

.drop-zone.dragover {
    border-color: #3498db;
    background: #eaf4f9;
    transform: scale(1.02);
}

.drop-zone.has-file {
    border-color: #27ae60;
    background: #f1f8e9;
}

.drop-zone-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.drop-zone:hover .drop-zone-icon,
.drop-zone.dragover .drop-zone-icon {
    color: #3498db;
}

.drop-zone.has-file .drop-zone-icon {
    color: #27ae60;
}

.drop-zone h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.drop-zone p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.file-input {
    display: none;
}

.file-info {
    margin-top: 15px;
    padding: 10px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #27ae60;
}

.upload-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.upload-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.3);
}

.upload-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.analyze-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: none;
}

.analyze-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.analyze-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.checklist-section {
    margin-top: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    display: none;
    border: 1px solid #e9ecef;
}

.checklist-title {
    text-align: center;
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.analysis-overview {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.overview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.overview-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.overall-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overall-status.ok {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.overall-status.issues_found {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.metric-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.metric-number.passed {
    color: #28a745;
}

.metric-number.failed {
    color: #dc3545;
}

.metric-number.warning {
    color: #ffc107;
}

.metric-number.info {
    color: #17a2b8;
}

.metric-label {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.highlights-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #007bff;
}

.highlights-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 20px;
}

.highlights-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 0.8rem;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    padding: 5px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.filter-tab {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
}

.filter-tab.active {
    background: white;
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-tab:hover {
    color: #2c3e50;
}

.checklist-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

/* Check Card Base Styles */
.check-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    margin-bottom: 16px;
    overflow: hidden;
}

.check-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.check-card.action-needed {
    border-left: 4px solid #dc3545;
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.15);
}

.check-card.action-needed:hover {
    box-shadow: 0 6px 24px rgba(220, 53, 69, 0.2);
}

.check-card.satisfied {
    border-left: 4px solid #28a745;
}

.check-card.warning {
    border-left: 4px solid #ffc107;
}

/* Check Card Header */
.check-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.check-title {
    flex: 1;
    min-width: 0;
}

.check-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.check-description {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.check-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.status-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: white;
}

.status-badge.satisfied {
    background: #28a745;
}

.status-badge.missing,
.status-badge.noncompliant {
    background: #dc3545;
}

.status-badge.not_applicable {
    background: #6c757d;
}

.status-badge.insufficient_info {
    background: #ffc107;
    color: #212529;
}

.severity-indicator {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.severity-indicator.high {
    background: #dc3545;
    color: white;
}

.severity-indicator.medium {
    background: #fd7e14;
    color: white;
}

.severity-indicator.low {
    background: #28a745;
    color: white;
}

/* Check Card Body */
.check-body {
    padding: 16px 20px;
}

.check-info {
    display: none;
}

.check-info.show {
    display: block;
}

.info-section {
    margin-bottom: 12px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-content {
    font-size: 0.9rem;
    color: #212529;
    line-height: 1.4;
}

/* Action Needed Alert */
.action-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 12px;
}

.action-alert .info-label {
    color: #856404;
}

.action-alert .info-content {
    color: #856404;
    font-weight: 500;
}

.suggested-text-box {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
}

.endorsement-section {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-radius: 10px;
    display: none;
}

.endorsement-message {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.generate-endorsement-button {
    padding: 12px 30px;
    background: white;
    color: #d35400;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.generate-endorsement-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-section {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 10px;
    display: none;
}

.download-message {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.download-button {
    padding: 12px 30px;
    background: white;
    color: #27ae60;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-button:disabled {
    background: #ecf0f1;
    color: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.backend-status {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.backend-status.connected {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border-color: rgba(39, 174, 96, 0.3);
}

.backend-status.disconnected {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}

.backend-status.checking {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.connected {
    background: #27ae60;
}

.status-dot.disconnected {
    background: #e74c3c;
}

.status-dot.checking {
    background: #3498db;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.backend-status:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.backend-status::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    border-radius: 8px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.backend-status:hover::after {
    opacity: 1;
}

.status-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.status-message.success {
    background: #d5f4e6;
    color: #0d5123;
    border: 1px solid #b6e5c8;
}

.status-message.error {
    background: #faeaea;
    color: #721c24;
    border: 1px solid #e6b3b3;
}

.status-message.loading {
    background: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #bbdefb;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ecf0f1;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Chat Interface Styles */
.chat-interface {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    max-height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    display: none;
    flex-direction: column;
    z-index: 1000;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.chat-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    max-width: 85%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-message.assistant {
    align-self: flex-start;
    background: #f8f9fa;
    color: #2c3e50;
    border: 1px solid #e9ecef;
    border-bottom-left-radius: 4px;
}

.chat-message.system {
    align-self: center;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    font-size: 0.8rem;
    padding: 8px 10px;
    border-radius: 15px;
    max-width: 100%;
    text-align: center;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.chat-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 0.9rem;
    resize: none;
    max-height: 80px;
    min-height: 40px;
    outline: none;
    font-family: inherit;
}

.chat-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.chat-send {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 1rem;
}

.chat-send:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.chat-send:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.chat-toggle.pulse {
    animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
    0% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3); }
}

.chat-loading {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    align-self: flex-start;
    max-width: 85%;
}

.chat-loading-dots {
    display: flex;
    gap: 2px;
}

.chat-loading-dot {
    width: 6px;
    height: 6px;
    background: #6c757d;
    border-radius: 50%;
    animation: chatLoading 1.4s infinite ease-in-out both;
}

.chat-loading-dot:nth-child(1) { animation-delay: -0.32s; }
.chat-loading-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes chatLoading {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.5;
    } 
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .upload-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }

    .backend-status {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .backend-status::after {
        display: none;
    }

    .ai-assistant-intro {
        padding: 15px;
        margin-bottom: 20px;
    }

    .ai-assistant-title {
        font-size: 0.8rem;
    }

    .ai-assistant-text {
        font-size: 0.9rem;
    }

    .analysis-overview {
        padding: 20px;
        margin-bottom: 20px;
    }

    .overview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .overview-title {
        font-size: 1.3rem;
    }

    .status-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .metric-card {
        padding: 15px;
    }

    .metric-number {
        font-size: 2rem;
    }

    .filter-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .filter-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .check-card {
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .check-header {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .check-status {
        align-self: flex-end;
    }

    .status-badge {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .check-name {
        font-size: 0.95rem;
    }

    .check-description {
        font-size: 0.8rem;
    }

    .check-body {
        padding: 12px 16px;
    }

    .highlights-section {
        padding: 15px;
    }

    .highlights-title {
        font-size: 1rem;
    }

    .highlights-list li {
        font-size: 0.9rem;
    }

    .action-alert {
        padding: 10px;
        margin-top: 12px;
    }

    /* Chat mobile responsiveness */
    .chat-interface {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
        bottom: 20px;
        max-height: 60vh;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .status-metrics {
        grid-template-columns: 1fr;
    }

    .metric-card {
        padding: 12px;
    }

    .metric-number {
        font-size: 1.8rem;
    }

    .filter-tabs {
        padding: 3px;
    }

    .filter-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
