/* * @package WVVT Podcast Universe
 * @version 1.0.0
 * @copyright (c) 2025 DiVeRsIoNs. All rights reserved.
 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'proxima-nova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1e1e1e;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

main {
    flex: 1;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sqs-header {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 1rem 4vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-branding {
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-right: 20px;
}

.nav-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.header-nav {
    display: none;
    gap: 1.5rem;
}

.header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.btn-donate-header {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
}

@media (min-width: 900px) {
    .header-branding {
        font-size: 1.4rem;
    }

    .header-nav {
        display: flex;
    }
}

@media (max-width: 899px) {
    .sqs-header {
        justify-content: center;
        gap: 1rem;
    }

    .nav-container {
        display: none;
    }
}

.public-view {
    width: 100%;
    padding: 4rem 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-box {
    background-color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 4px;
    text-align: center;
    border-bottom: 1px solid #eee;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tower-animation {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin: 0 auto 1rem auto;
}

#antennaLoginBtn {
    cursor: pointer;
    transition: transform 0.2s;
}

#antennaLoginBtn:hover {
    transform: scale(1.1);
}

.intro-box h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.intro-box p {
    color: #555;
}

.feed-container {
    max-width: 800px;
    width: 100%;
    margin: 2rem auto;
}

.feed-search {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 5px;
}

.feed-item:hover {
    background: #fafafa;
    transform: translateX(5px);
}

.feed-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F56D6B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feed-details h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: #333;
}

.feed-meta {
    font-size: 0.85rem;
    color: #888;
}

.feed-tags {
    margin-top: 0.5rem;
}

.feed-tag {
    display: inline-block;
    background: #eee;
    color: #555;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-right: 5px;
}

.upload-container {
    max-width: 700px;
    width: 100%;
    margin: 4rem auto;
}

.dashboard-band {
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dashboard-band h2 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #F56D6B;
}

.band-meta {
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.band-logout {
    background: transparent;
    border: 1px solid #444;
    color: #999;
    padding: 5px 10px;
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 15px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.band-logout:hover {
    border-color: #F56D6B;
    color: #F56D6B;
}

.tier-text,
.tier-badge {
    font-weight: bold;
    color: #fff;
    background: #333;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.tier-spark {
    background: #f1c40f;
    color: black;
}

.tier-lamplight {
    background: #e67e22;
}

.tier-campfire {
    background: #F56D6B;
}

.wvvt-form {
    background: #ffffff;
    padding: 2rem 3rem;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #111;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ccc;
    background: #fafafa;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #F56D6B;
    background: #fff;
}

.form-textarea:disabled {
    background: #e9ecef;
    cursor: not-allowed;
    opacity: 0.7;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #eee;
}

.tag-option {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: white;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: 0.2s;
}

.tag-option:hover {
    border-color: #bbb;
}

.tag-option input:checked+span {
    color: #F56D6B;
    font-weight: bold;
}

.highlight-box {
    background-color: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 4px;
    padding: 15px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 4px;
}

.file-drop-zone {
    border: 2px dashed #ccc;
    padding: 3rem 1rem;
    text-align: center;
    cursor: not-allowed;
    background: #f4f4f4;
    transition: all 0.3s;
    opacity: 0.6;
    pointer-events: none;
    border-radius: 4px;
    color: #888;
}

.file-drop-zone.active-ready {
    background-color: #0b140b;
    border-color: #2ecc71;
    color: #d4edda;
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.file-drop-zone.active-ready:hover,
.file-drop-zone.active-ready.drag-hover {
    background: #132213;
    border-color: #27ae60;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

.file-drop-zone.error {
    border-color: #e74c3c;
    background: #fff0f0;
}

.drop-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.drop-subtitle {
    font-size: 0.8rem;
    color: #666;
}

.file-name-display {
    margin-top: 10px;
    font-weight: bold;
    color: #F56D6B;
    display: none;
}

.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
    display: none;
}

.progress-bar {
    width: 0%;
    height: 10px;
    background-color: #F56D6B;
    transition: width 0.2s;
}

.upload-feedback {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.sqs-button {
    display: block;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: not-allowed;
    margin-top: 1rem;
    transition: background 0.3s;
    opacity: 0.5;
    border-radius: 4px;
}

.sqs-button.ready {
    cursor: pointer;
    opacity: 1;
}

.sqs-button.ready:hover {
    background-color: #333;
}

.legal-small-print {
    font-size: 0.7rem;
    color: #888;
    margin-top: 1.5rem;
    line-height: 1.4;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.legal-small-print strong {
    color: #555;
}

.file-list-area {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.file-list-area h5 {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.file-list-ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
    color: #333;
}

.file-list-ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delete-btn {
    border: none;
    background: #eee;
    color: #555;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 0.2s;
}

.delete-btn:hover {
    background: #e74c3c;
    color: white;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
    position: relative;
}

.modal-content h3 {
    color: #F56D6B;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.modal-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    font-size: 0.9rem;
}

.modal-btn.secondary {
    background: #eee;
    color: #333;
}

.modal-btn.primary {
    background: #F56D6B;
    color: white;
}

.modal-btn:hover {
    opacity: 0.8;
}

#toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    border-left: 5px solid #333;
    padding: 15px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.error {
    border-left-color: #e74c3c;
    background: #fffdfd;
}

.toast.success {
    border-left-color: #2ecc71;
    background: #fafffb;
}

.admin-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: #f4f6f8;
}

.sidebar {
    background: #1a1a1a;
    color: #eee;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.sidebar h2 {
    color: #F56D6B;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #F56D6B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.nav-btn {
    text-decoration: none;
    color: #888;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.2s;
    margin-bottom: 5px;
    display: block;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.nav-btn:hover,
.nav-btn.active {
    background: #333;
    color: white;
    border-left: 4px solid #F56D6B;
}

.logout {
    margin-top: auto;
    color: #e74c3c;
}

.admin-content {
    padding: 40px;
}

.module-header {
    margin-bottom: 30px;
}

.module-header h1 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.module-header p {
    color: #777;
    margin-top: 5px;
}

.panel {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 20px;
}

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

.stat-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stat-card .value {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    display: block;
}

.stat-card .label {
    display: block;
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}

.admin-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid #eee;
    color: #555;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.markdown-preview {
    font-family: sans-serif;
    line-height: 1.6;
}

.markdown-preview h1 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 30px;
}

.markdown-preview h2 {
    color: #F56D6B;
    margin-top: 25px;
}

.markdown-preview code {
    background: #f4f4f4;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    color: #d63031;
}

.markdown-preview table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.markdown-preview td {
    border: 1px solid #ddd;
    padding: 8px;
}

.pricing-header {
    text-align: center;
    padding: 40px 20px;
    background: #fafafa;
    width: 100%;
}

.pricing-header h1 {
    font-size: 2.5rem;
    color: #F56D6B;
    margin-bottom: 10px;
}

.launcher-banner {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin: 20px auto 30px auto;
    max-width: 800px;
    border-radius: 4px;
    border: 2px solid #F56D6B;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.price-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border: 2px solid #F56D6B;
}

.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #F56D6B;
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0 4px 0 4px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0 5px 0;
}

.price span {
    font-size: 1rem;
    color: #999;
    font-weight: normal;
}

.annual {
    font-size: 0.85rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.student-note {
    color: #e67e22;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.price-card li {
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 0.95rem;
}

.pricing-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    background: white;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.2s;
    border-radius: 4px;
}

.pricing-btn:hover {
    background: #333;
    color: white;
}

.pricing-btn.primary {
    background: #F56D6B;
    border-color: #F56D6B;
    color: white;
}

.pricing-btn.primary:hover {
    background: #d14426;
}

.footer-a {
    background-color: #F56D6B !important;
    color: #ffffff !important;
    padding: 5rem 4vw;
    margin-top: auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-block h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-block p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.footer-block a {
    text-decoration: underline;
}

.footer-b {
    background-color: #000000 !important;
    color: #F56D6B !important;
    padding: 2rem 4vw;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: 100%;
}

.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 10px 20px;
    display: none;
    align-items: center;
    gap: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid #444;
}

.player-info {
    width: 200px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#playerTitle {
    font-weight: bold;
    display: block;
    color: #F56D6B;
}

#playerAuthor {
    color: #aaa;
    font-size: 0.8rem;
}

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

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

/* ... Previous CSS ... */

/* SENTINEL STATUS BADGE */
.sentinel-badge {
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 4px solid rgba(0, 0, 0, 0.1);
}

.sentinel-badge .indicator {
    font-size: 1.2em;
    line-height: 0;
}

/* Status 1: Home (Green) */
.status-1 {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

/* Status 2: Work (Blue) */
.status-2 {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left-color: #007bff;
}

/* Status 3: Override (Yellow) */
.status-3 {
    background-color: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}


/* ... [Keep all previous CSS] ... */

/* =========================================
   9. SAAS DARK MODE MODAL OVERRIDES
   ========================================= */

/* Triggered by adding 'saas-mode' class to body */
body.saas-mode {
    background-image: none !important;
    background-color: #000000 !important;
    /* Dark Backdrop */
    height: 100vh;
    overflow: hidden;
    /* Prevent scrolling behind modal */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide the standard public header when in SaaS mode */
body.saas-mode .sqs-header {
    display: none !important;
}

/* The Modal Container */
.saas-modal {
    width: 95vw;
    height: 95vh;
    background-color: #1e1e1e;
    /* Dark Gray Background */
    color: #eeeeee;
    /* White/Light Gray Text */
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    display: grid;
    grid-template-columns: 260px 1fr;
    /* Sidebar | Content */
    overflow: hidden;
    border: 1px solid #333;
    position: relative;
    z-index: 2000;
}

/* Sidebar Override */
.saas-modal .sidebar {
    background-color: #121212;
    border-right: 1px solid #333;
    height: 100%;
}

.saas-modal .sidebar h2 {
    color: #F56D6B;
}

/* Content Area Override */
.saas-modal .admin-content {
    background-color: #1e1e1e;
    color: #eee;
    overflow-y: auto;
    /* Scroll inside the modal */
    padding: 30px;
}

/* Panels & Cards (Dark Theme) */
.saas-modal .panel,
.saas-modal .card,
.saas-modal .stat-card {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #eee;
    box-shadow: none;
}

/* Tables (Dark Theme) */
.saas-modal .admin-table {
    background-color: #2a2a2a;
    color: #eee;
}

.saas-modal .admin-table th {
    background-color: #333;
    color: #fff;
    border-bottom: 1px solid #555;
}

.saas-modal .admin-table td {
    border-bottom: 1px solid #444;
    color: #ddd;
}

/* Text Colors */
.saas-modal h1,
.saas-modal h2,
.saas-modal h3,
.saas-modal strong {
    color: #fff;
}

.saas-modal p,
.saas-modal .label {
    color: #bbb;
}

/* Inputs (Dark Theme) */
.saas-modal input,
.saas-modal textarea,
.saas-modal select {
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
}

.saas-modal input:focus,
.saas-modal textarea:focus {
    border-color: #F56D6B;
    background-color: #444;
}

/* Buttons */
.saas-modal .nav-btn {
    color: #aaa;
}

.saas-modal .nav-btn:hover,
.saas-modal .nav-btn.active {
    background-color: #333;
    color: #fff;
    border-left-color: #F56D6B;
}

/* Code Blocks / Logs */
.saas-modal pre,
.saas-modal code {
    background-color: #000;
    border: 1px solid #333;
    color: #00ff00;
    /* Hacker Green for logs */
}

/* Add to SaaS Dark Mode section */
.saas-modal .stat-card .value {
    color: #ffffff !important;
}

.saas-modal .stat-card .label {
    color: #cccccc !important;
}