@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');



#appContent.hidden {
    display: none !important;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.8);
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: rgba(99, 102, 241, 0.3);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    /* Pure Black Default */
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    /* Removed gradients for pure black look */
    background-image: none;
    background-attachment: fixed;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

header {
    margin-bottom: 3rem;
    animation: fadeInDown 0.6s ease;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-top>div:first-child {
    text-align: center;
    flex: 1;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.header-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 12px;
}

.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.user-email {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view-details-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.view-details-link:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--error-color);
    transform: translateY(-1px);
}

.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease;
}

.info-box {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--accent-primary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.info-box h3 {
    color: var(--accent-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.limitations-box {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.limitations-box h4 {
    color: var(--accent-secondary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.limitations-box ul {
    list-style: none;
    padding-left: 0;
}

.limitations-box li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.limitations-box li strong {
    color: var(--text-primary);
}

.generator-section {
    margin-top: 2rem;
}

.generator-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input[type="url"] {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="url"]:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.permissions-group {
    margin-bottom: 1.5rem;
}

.permissions-group>label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.checkbox-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.checkbox-label:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-primary);
}

.checkbox-label span {
    font-weight: 500;
    color: var(--text-primary);
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    width: 100%;
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
}

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

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.result-area {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    animation: fadeIn 0.4s ease;
}

.result-area.hidden {
    display: none;
}

.result-area h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.result-area p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.link-box {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.link-box input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.link-box input:focus {
    outline: none;
    border-color: var(--success-color);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 1rem;
}

.copy-btn:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.copy-btn.copied {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

/* Menu & Dropdown */
.menu-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    z-index: 100;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
}

.dropdown-item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    color: var(--text-primary);
    margin: 0;
}

.modal-header button {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-header button:hover {
    color: var(--text-primary);
}

/* History Items */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s;
}

.history-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.history-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
}

.history-target {
    color: var(--text-primary);
    font-weight: 500;
    overflow-wrap: anywhere;
    /* Wrap long URLs */
    word-break: break-word;
    flex: 1;
    margin-right: 12px;
}

.history-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
}

.history-permissions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.history-badge {
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.history-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.history-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.history-copy-btn {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border-color: var(--border-color);
}

.history-copy-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-primary);
}

.history-delete-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    margin-left: auto;
    /* Push to right */
}

.history-delete-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.history-visit-btn {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.history-visit-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
}

/* View Details Section */
.input-group {
    display: flex;
    gap: 1rem;
}

.input-group input {
    flex: 1;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.search-btn {
    padding: 0 2rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease;
}

.permission-badge {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.visit-history {
    margin-top: 2rem;
}

.visit-history h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.visit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.visit-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.no-results h3 {
    margin: 1rem 0 0.5rem;
    color: var(--text-primary);
}

.hidden {
    display: none !important;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 640px) {
    header h1 {
        font-size: 2rem;
    }

    .card {
        padding: 1.5rem;
    }

    .checkbox-group {
        flex-direction: column;
    }

    .link-box {
        flex-direction: column;
    }

    .header-actions {
        align-items: stretch;
    }

    .user-email {
        max-width: 150px;
    }

    .input-group {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
        padding: 1rem;
    }

    .history-actions {
        flex-direction: column;
    }

    .history-btn {
        text-align: center;
    }
}

/* Settings Page Styles - Advanced Theme UI */
.settings-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.theme-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.theme-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.theme-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #6b7280;
    border-radius: 50%;
    margin-top: 2px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.theme-option input[type="radio"]:checked+.radio-custom {
    border-color: #6366f1;
}

.theme-option input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #6366f1;
    border-radius: 50%;
}

.option-title {
    font-weight: 500;
    color: #f8fafc;
    margin-bottom: 4px;
}

.option-desc {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Semi Settings Collapsible */
.semi-settings {
    margin-left: 32px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    margin-top: -8px;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-height: 200px;
    opacity: 1;
}

.semi-settings.hidden {
    max-height: 0;
    opacity: 0;
    padding: 0 16px;
    margin-top: 0;
    margin-bottom: 0;
    border: none;
}

.semi-controls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.semi-control {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
}

/* Toggle Group (Segmented Control) */
.toggle-group {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px;
    border-radius: 8px;
}

.toggle-group label {
    flex: 1;
    cursor: pointer;
}

.toggle-group input {
    display: none;
}

.toggle-btn {
    display: block;
    text-align: center;
    padding: 6px;
    font-size: 0.85rem;
    color: #9ca3af;
    border-radius: 6px;
    transition: all 0.2s;
}

.toggle-group input:checked+.toggle-btn {
    background: #6366f1;
    color: white;
    font-weight: 500;
}

/* Light Theme - Dashboard (White Background, Black Card) */
body.theme-dashboard-light {
    background: #f8fafc !important;
    background-image: none !important;
    color: #000000 !important;
    /* Pure Black body text */
}

/* Override Gradient Title in Light Mode */
body.theme-dashboard-light header h1 {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #000000 !important;
    /* Pure Black Title */
}

body.theme-dashboard-light .card,
body.theme-dashboard-light .section-card,
body.theme-dashboard-light .info-card,
body.theme-dashboard-light #viewDetailsSection {
    background: #000000 !important;
    /* Pure Black Card */
    color: #f8fafc !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
}

body.theme-dashboard-light .user-info {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

body.theme-dashboard-light #userName {
    color: #000000 !important;
    /* Pure Black Header Text */
}

body.theme-dashboard-light #userEmail {
    color: #000000 !important;
    /* Pure Black for Email */
}

body.theme-dashboard-light .subtitle {
    color: #000000 !important;
    /* Pure Black for subtitle */
}

/* Fix visibility of Header Buttons (Menu, Back, etc) on White Background */
body.theme-dashboard-light #menuBtn,
body.theme-dashboard-light .back-btn {
    color: #000000 !important;
    /* Pure Black Icon */
    background: rgba(0, 0, 0, 0.05);
    /* Very subtle dark bg for buttons */
}

body.theme-dashboard-light .back-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Ensure buttons and inputs inside dark cards look correct */
body.theme-dashboard-light .card input,
body.theme-dashboard-light .section-card input {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.theme-dashboard-light .card label,
body.theme-dashboard-light .section-card label {
    color: #e2e8f0;
}

/* Visit Cards & Details */
.visit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.visit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.visit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    position: relative !important;
}

.visit-header h4 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    margin: 0 !important;
}

.visit-time {
    font-size: 0.9rem !important;
    color: var(--text-secondary) !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.device-badge {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.75rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px !important;
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
}

.location-section {
    background: rgba(30, 35, 62, 0.4) !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    border: 1px solid var(--border-color) !important;
    border-left: 4px solid #f59e0b !important;
    margin-top: 1rem !important;
}

.location-section h5 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: var(--text-primary) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.location-data {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem 2rem !important;
    font-size: 0.9rem !important;
}

.location-data-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
}

.location-data-item strong {
    color: var(--text-secondary) !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
}

.location-data-item span {
    color: #f59e0b !important;
    font-weight: 600 !important;
}

.permission-status-section {
    margin-bottom: 2rem !important;
}

.permission-status-section h5 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.25rem !important;
    color: var(--text-primary) !important;
}

.status-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.25rem 0 !important;
    font-weight: 500 !important;
}

.status-icon {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.8rem !important;
}

.status-icon.granted {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

.status-icon.denied {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.status-icon.skipped {
    background: rgba(148, 163, 184, 0.1) !important;
    color: #94a3b8 !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
}

.status-text.granted {
    color: #10b981 !important;
    font-weight: 700 !important;
}

.status-text.denied {
    color: #ef4444 !important;
    font-weight: 700 !important;
}

.status-text.skipped {
    color: #94a3b8 !important;
    font-weight: 700 !important;
}