.dashboard-wrapper {
    padding: 40px;
    max-width: 1600px;
    margin: 0 auto;
}
.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 40px;
}
.dash-card {
    background: rgba(5, 7, 10, 0.8);
    border: 1px solid #00AFFF33;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 0 18px #00AFFF22, 0 0 4px #00AFFF11 inset;
    transition: 0.2s;
}
.dash-card:hover {
    box-shadow: 0 0 30px #00AFFF55;
}
.dash-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 6px;
    color: #9ecff5;
}
.dash-value {
    font-size: 1.5rem;
    color: #00AFFF;
    font-weight: bold;
}
ul.dash-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}
ul.dash-list li {
    padding: 6px 0;
    border-bottom: 1px solid #0b0e13;
    color: #bcdfff;
}
ul.dash-list li a {
    color: #00AFFF;
    text-decoration: none;
}
pre.dash-pre {
    background: rgba(5, 7, 10, 0.8);
    border: 1px solid #00AFFF22;
    box-shadow: 0 0 15px #00AFFF22 inset;
    padding: 18px;
    border-radius: 10px;
    max-height: 300px;
    overflow-y: auto;
    color: #bcdfff;
    font-size: 14px;
}
.centered-title {
    text-align: center;
    margin-bottom: 40px;
}