.card, .alert, .border {
    background-color: var(--bg-card) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 0.5px solid rgba(0, 255, 102, 0.2) !important;
    border-radius: 4px !important;
    box-shadow: 0 0 5px var(--accent-green-dim) inset;
}

.card:hover, .alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.5), 0 0 10px var(--accent-green-dim), 0 0 10px var(--accent-green-dim) inset !important;
}

.badge-custom {
    background-color: rgba(0, 255, 102, 0.1) !important;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 1rem;
    border: 0.5px solid rgba(0, 255, 102, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Progress Bars */
.fuel-progress {
    height: 12px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05) !important;
    overflow: visible;
}

.fuel-progress-bar {
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.fuel-glow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    filter: blur(2px);
}

/* Boxplot */
.boxplot-container {
    height: 60px;
    position: relative;
}

.boxplot-whisker {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.boxplot-box {
    position: absolute;
    top: 20%;
    bottom: 20%;
    background: rgba(0, 255, 102, 0.15);
    border: 0.5px solid #00ff66;
}

.boxplot-median {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff;
}

.boxplot-cap {
    position: absolute;
    top: 35%;
    bottom: 35%;
    width: 2px;
    background: #ffea00;
}

/* Buy Me a Coffee Button */
.btn-bmc {
    background-color: #FFDD00 !important;
    color: #000000 !important;
    border: none !important;
    font-weight: bold !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.2s ease-in-out !important;
    font-family: 'JetBrains Mono', monospace !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
}

.btn-bmc:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 221, 0, 0.4) !important;
    background-color: #ffc400 !important;
}

.btn-bmc i {
    font-size: 1.1rem !important;
}

