/* Deep Space Theme */
.dashboard-container {
    background: #010516;
}
/* for larger screens, add padding around edges */
@media (min-width: 992px) {
    .dashboard-container {
        padding: 20px;
        gap: 20px;
    }
}
@media (min-width: 1200px) {
    .dashboard-container {
        padding: 40px;
        gap: 40px;
    }
}

.card-section {
    background: radial-gradient(ellipse at top left, #090c1a 0%, #06070d 100%);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 100, 255, 0.05);
    color: #d0d0ff;
}

.card-section h5 {
    color: #bbc7ff;
}

/* .metric-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
} */

.metric-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.metric-box .label {
    font-size: 0.85rem;
    color: #a0a0d0;
}

.metric-box .value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.form-check-label {
    color: #a0a0d0;
}

.form-check-input:checked {
    background-color: #5566ff;
    border-color: #7788ff;
}

/* .zoom-buttons button {
    background-color: #11174f;
    color: #ffffff;
} */
.zoom-buttons button {
    border: none;
    background-color: #11174f;
    color: #ffffff;
    padding: 8px 10px;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.zoom-buttons button:hover {
    background-color: #18216f;
}

.zoom-buttons button:disabled {
    background-color: #222;
    color: #666;
    cursor: not-allowed;
}

.overlay-model-group {
    border-left: 4px solid #77bbff;
}

.correlation-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    min-width: 120px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.correlation-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgb(17, 165, 191);
}

.correlation-box .label {
    font-size: 0.9rem;
    color: #ccc;
}

.correlation-box .value {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
}

/* Deep Space custom tooltip styling */
.tooltip-inner {
    background-color: #181a2a !important;   /* deep dark background */
    color: #77bbff !important;              /* soft blue text */
    border: 1px solid #77bbff;
    font-size: 1rem;
    box-shadow: 0 0 8px #77bbff, 0 0 2px #010516;
    border-radius: 8px;
    padding: 0.75em 1.25em;
    text-align: left;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before,
.tooltip.bs-tooltip-auto[x-placement^="top"] .tooltip-arrow::before {
    border-top-color: #77bbff !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip.bs-tooltip-auto[x-placement^="bottom"] .tooltip-arrow::before {
    border-bottom-color: #77bbff !important;
}

.tooltip.bs-tooltip-left .tooltip-arrow::before,
.tooltip.bs-tooltip-auto[x-placement^="left"] .tooltip-arrow::before {
    border-left-color: #77bbff !important;
}

.tooltip.bs-tooltip-right .tooltip-arrow::before,
.tooltip.bs-tooltip-auto[x-placement^="right"] .tooltip-arrow::before {
    border-right-color: #77bbff !important;
}
