/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Performance optimization for theme switching */
.no-transition * {
    transition: none !important;
}

/* CSS Variables for Theming */
:root {
    /* Colors - Refined Modern Palette */
    --primary-color: #00b5ad;
    --primary-color-light: rgba(0, 181, 173, 0.1);
    --primary-color-hover: #009c95;
    --secondary-color: #1a1a2e;
    --accent-color: #f76e11;
    --success-color: #21ba45;
    --warning-color: #f2c037;
    --error-color: #db2828;
    
    /* Light Theme Colors */
    --bg-color: #f8f9fa;
    --bg-secondary: #ffffff;
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --header-bg: #ffffff;
    --hover-bg: #f1f3f5;
    --even-row-bg: #f8f9fa;
    --details-bg: #ffffff;
    --details-hover: #e9ecef;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --input-bg: #ffffff;
    
/* Typography */
    --font-family-base: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-base: 16px;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 32px;
    --line-height-base: 1.5;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
    --font-weight-black: 700;
    
    /* Layout */
    --container-max-width: 750px;
    --section-spacing: 1rem;
    --content-padding: 1rem;
    --border-radius-sm: 0.25rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --transition-base: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    
    /* Status Indicators */
    --status-true: #4caf50;
    --status-false: #e74c3c;
    --status-null: #e0e0e0;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --bg-color: #121212;
    --bg-secondary: #1e1e1e;
    --text-primary: #f8f9fa;
    --text-secondary: #e9ecef;
    --text-muted: #adb5bd;
    --border-color: #333333;
    --header-bg: #1e1e1e;
    --hover-bg: #2a2a2a;
    --even-row-bg: #282828;
    --details-bg: #1e1e1e;
    --details-hover: #2a2a2a;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.4);
    --input-bg: #333333;
    
    /* Status Indicators */
    --status-null: #555555;
}

/* Base Styles */
html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
    background-color: var(--bg-color);
    color: var(--text-primary);
    transition: background-color 0.2s ease, color 0.2s ease;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.5px;
    word-wrap: break-word; /* Ensure text wraps if needed */
    overflow-wrap: break-word;
}

h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-color-hover);
}

/* Layout */
.app-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem var(--content-padding);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0 0.5rem;
    position: relative;
    margin-bottom: var(--section-spacing);
}

.main-content {
    margin-bottom: var(--section-spacing);
}

#theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, transform 0.15s ease;
    overflow: hidden;
    box-shadow: none;
    outline: none;
    will-change: background-color, transform;
}

#theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] #theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.theme-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: transform 0.15s ease;
}

/* Sun Icon - einfacher und minimalistischer */
[data-theme="light"] .theme-icon::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sun Rays - reduziert und minimalistischer */
[data-theme="light"] .theme-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 
        3px 0 0 0 var(--text-primary),
        -3px 0 0 0 var(--text-primary),
        0 3px 0 0 var(--text-primary),
        0 -3px 0 0 var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Moon Icon - minimalistischer */
[data-theme="dark"] .theme-icon::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
    box-shadow: inset 5px -4px 0 0 var(--text-primary);
    transform: rotate(-45deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stars entfernt für minimalistischeres Design */
[data-theme="dark"] .theme-icon::after {
    display: none;
}

/* Animation effects - subtiler */
#theme-toggle:hover .theme-icon {
    transform: scale(1.1);
}

#theme-toggle:focus {
    outline: none;
}

/* Positionierung für den Theme-Toggle */
.theme-toggle-container {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 100;
}


/* Updates Container */
.updates-container {
    margin-bottom: var(--section-spacing);
}

.updates-container .updates-section {
    margin: 0;
}

/* Search & Filter Controls */
.controls-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.7rem;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);    
    transition: var(--transition-base);
    border-left: 4px solid var(--primary-color);
}

.search-container {
    width: 100%; /* Volle Breite statt flex-grow */
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box {
    flex: 1;
    padding-right: 40px; /* Add space for the share icon */
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: var(--font-size-base);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--input-bg);
    color: var(--text-primary);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.search-box:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 194, 182, 0.2);
}

.search-icon {
    position: absolute;
    left: 10px;
    pointer-events: none;
    color: var(--text-muted);
}

.share-icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.share-icon:hover {
    color: #000;
}

[data-theme="dark"] .share-icon:hover {
    color: #bbb;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    position: relative;
    height: 18px;
    width: 18px;
    margin-right: 8px;
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
}

.filter-checkbox input:checked ~ .custom-checkbox {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .custom-checkbox:after {
    display: block;
}

.filter-checkbox:hover .custom-checkbox {
    border-color: var(--primary-color);
}

/* Asset Groups */
.asset-groups {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Modern redesigned asset listings */
details {
    position: relative;
    background-color: var(--bg-secondary);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color-light);
}

details:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-left: 4px solid var(--primary-color);
}

summary {
    padding: 12px 16px;
    cursor: pointer;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: var(--transition-base);
    position: relative;
    border: none;
    min-height: 56px;
    gap: 10px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: 10px;
}

details[open] summary::after {
    transform: rotate(-135deg);
}

.summary-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 12px; /* Abstand nach links vom Badge */
    flex: 1; /* Nimmt verfügbaren Platz ein */
}

/* Modern asset badges */
.asset-count {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 500;
    color: white;
    background: #00acc1; /* Türkisfarbe aus Dark Mode übernommen */
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 172, 193, 0.2);
    font-variant-numeric: tabular-nums;
}

.asset-count::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
    pointer-events: none;
}

.badge-large {
    background: #00acc1; /* Türkisfarbe aus Dark Mode übernommen */
    font-weight: 600; /* Stattdessen durch Schriftstärke unterscheiden */
}

/* Verbesserte Lesbarkeit der Typografie */
.group-type {
    font-weight: 600;
    color: #00acc1; /* Türkisfarbe aus Dark Mode übernommen */
    margin-right: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.group-separator {
    color: var(--text-muted);
    margin: 0 6px;
    opacity: 0.7;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.group-name {
    font-weight: 400;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

/* Better table styling for asset details */
.table-container {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
    width: 100%; /* Volle Breite des Containers */
    max-height: 600px;
    overflow-y: scroll;
    /* Optional: for consistent look across browsers */
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) var(--bg-secondary);
}

/* For Webkit browsers (Chrome, Safari) */
.table-container::-webkit-scrollbar {
    width: 8px;
    background: var(--bg-secondary);
}
.table-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

table {
    width: 100%; /* Tabelle nutzt die gesamte verfügbare Breite */
    border-collapse: collapse;
    margin: 0; /* Entfernt Standard-Margins */
}

th, td {
    padding: 0.5em 0.5em 0.5em; /* Konsistentes Padding für alle Zellen */
    text-align: left;
    transition: var(--transition-base);
}

/* Center status symbols in the asset tables */
.asset-groups th:nth-child(n+3), 
.asset-groups td:nth-child(n+3) {
    text-align: center;
    width: 50px;
}

/* Set font size for asset groups table */
.asset-groups th{
    font-size: 0.90rem;
    padding: 0.4rem 0.3rem;
}

.asset-groups td {
    font-size: 0.85rem;
    padding: 0.4rem 0.3rem;
    transition: var(--transition-base);
}

/* Dunkelmodusvariante für die Ränder */
[data-theme="dark"] .table-container {
    border-top: 1px solid rgba(255,255,255,0.06);
}

td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Perfekte vertikale Ausrichtung */
summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}

/* Enhanced open state styling */
details[open] {
    margin-bottom: 16px;
}

details[open] summary {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] details[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Animation for details opening/closing */
details[open] > .table-container {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Dark mode enhancements */
[data-theme="dark"] .asset-count {
    background: #00acc1; /* Einheitliche Türkisfarbe für alle Badges */
    box-shadow: 0 2px 5px rgba(0, 172, 193, 0.2);
}

[data-theme="dark"] .badge-large {
    background: #00acc1; 
    box-shadow: 0 2px 5px rgba(0, 172, 193, 0.2);
}

/* Dark mode styles */
[data-theme="dark"] details {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] details:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Theme icon colors */
[data-theme="dark"] .theme-icon {
    color: #f8f9fa;
}

.theme-icon {
    color: #333;
}


/* Dark Mode Verbesserungen für Asset-Listen */
[data-theme="dark"] .summary-content {
    color: var(--text-primary);
}

[data-theme="dark"] details {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] details:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .group-type {
    color: #00acc1; /* Gleiche Farbe wie die Badges */
}

summary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    transition: var(--transition-base);
    opacity: 0;
    z-index: -1;
}

summary:hover::before {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] summary:hover::before {
    background-color: rgba(255, 255, 255, 0.03);
}

/* No Results Message */
.no-results {
    display: none; /* WICHTIG: Hidden by default, nur via JS anzeigen */
    text-align: center;
    padding: 1.5rem;
    margin: 1rem 0;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
}

[data-theme="dark"] .no-results {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Recent Changes Section Improvements */
.updates-section {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color-light);
}

.updates-section > summary {
    padding: 1rem;
}

.updates-section .table-container {
    padding: 0;
    border-top: none;
    max-height: 400px; /* Set a reasonable max height for scrolling */
    overflow-y: auto;
    overflow-x: auto;
    width: 100%;
    position: relative;
}

.updates-section h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.updates-subtitle {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: var(--font-size-sm);
}

/* Recent Changes Table Improvements */
.updates-section table {
    width: 100%;
    border-collapse: collapse;
}

.updates-section th {
    position: sticky;
    top: 0;
    background: var(--header-bg);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-base);
    padding: 0.4rem 0.3rem;
}

.updates-section td {
    padding: 0.4rem 0.3rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.updates-section td:last-child,
.updates-section th:last-child {
    text-align: right;
}

.updates-section tr:last-child td {
    border-bottom: none;
}

/* Recent Changes Row Styling */
.updates-section tbody tr:hover {
    background-color: var(--hover-bg);
}

/* Status indicators in updates */
.status-operational {
    color: var(--success-color);
}

.status-degraded {
    color: var(--warning-color);
}

.status-outage {
    color: var(--error-color);
}

[data-theme="dark"] .updates-section {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile optimizations for Recent Changes - Overflow-Problem beheben */
.updates-section {
    overflow-x: auto; /* Erlaubt horizontales Scrollen falls nötig */
    max-width: 100%; /* Begrenzt Breite auf Container */
}


/* Mobile Typography Adjustments */
@media (max-width: 650px) {
    html {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.5rem; /* Kleinere Schrift auf Mobilgeräten */
        padding-right: 0; /* Kein rechtes Padding mehr nötig */
        text-align: center; /* Für bessere mobile Darstellung */
    }

    h2 {
        font-size: 1.2rem;
    }

    .search-box {
        font-size: 14px;
    }

    .group-type,
    .group-name {
        font-size: 0.9rem;
    }

    .asset-count {
        font-size: 0.9rem;
        width: 32px;
        height: 32px;
    }

    .app-header {
        padding-top: 10px;
        padding-bottom: 8px;
        gap: 0.5rem; /* Abstand zwischen Elementen verringern */
    }

    .theme-toggle-container {
        right: 12px;
        top: 12px;
    }
    
    #theme-toggle {
        width: 36px;
        height: 36px;
    }
    
    .updates-section > summary {
        padding: 1rem;
    }
    
    .updates-section table {
        font-size: 0.9rem;
    }
    

    .updates-section .table-container {
    padding: 0;
    border-top: none;
    max-height: 300px; /* Set a reasonable max height for scrolling */
    overflow-y: auto;
    overflow-x: auto;
    width: 100%;
    position: relative;
    }

    .updates-section td:nth-child(3),
    .updates-section th:nth-child(3) {
    width: 110px; /* or your desired width */
    }

    .updates-section td:nth-child(2),
    .updates-section th:nth-child(2) {
    width: 130px; /* or your desired width */
    }
}

@media (max-width: 450px) {
    html {
        font-size: 0.8rem;
    }

    .updates-section .table-container {
    padding: 0;
    border-top: none;
    max-height: 250px; /* Set a reasonable max height for scrolling */
    overflow-y: auto;
    overflow-x: auto;
    width: 100%;
    position: relative;
    }

    .updates-section td:nth-child(3),
    .updates-section th:nth-child(3) {
    width: 95px; /* or your desired width */
    }

    .updates-section td:nth-child(2),
    .updates-section th:nth-child(2) {
    width: 115px; /* or your desired width */
    }
}

.table-container th {
    position: sticky;
    top: 0;
    background: var(--header-bg);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    border-bottom: 2px solid var(--border-color);
    transition: var(--transition-base);
}

[data-theme="dark"] .table-container th {
    background: var(--header-bg);
    border-bottom: 2px solid rgba(255,255,255,0.10);
}

.description-row {
    background-color: #ececec; /* more subtle, slightly darker than white for light mode */
    transition: var(--transition-base);
}
[data-theme="dark"] .description-row {
    background-color: #23272e; /* much lighter than main dark bg, but not too bright */
}

.desc-indicator {
    margin-left: 0.4em;
    color: #00b5ad;
    font-size: 1.1em;
    opacity: 0.7;
    transition: var(--transition-base);
    cursor: pointer;
}
.toggle-description:hover .desc-indicator {
    opacity: 1;
    text-shadow: 0 0 2px #00b5ad44;
}

/* Recent Changes Row Styling */
.asset-groups tbody tr:hover {
    background-color: var(--hover-bg);
}

[data-theme="dark"] .desc-indicator {
    color: #4fd2c2;
}

/* Popup Message Styles */
.popup-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

footer p{
	padding: 10px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 0px;
	text-align: center;
    border-left: 4px solid var(--primary-color-light); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);   
    margin-top: 0.5rem;
}
footer p:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-left: 4px solid var(--primary-color);
}

footer p a {
	color: white;
	text-decoration: none;
	font-weight: 700;
	padding: 3px 6px;
	border-radius: 8px;
	transition: all 0.3s ease;
	background: var(--primary-color-light);
}

footer p a:hover {
	background: var(--primary-color);
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}