* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
}

.auris-shell {
    min-height: 100vh;
    padding: 40px;
}

.auris-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.auris-label {
    margin: 0 0 8px;
    color: #38bdf8;
    font-size: 13px;
    letter-spacing: 0.16em;
    font-weight: 700;
}

h1 {
    margin: 0 0 10px;
    font-size: 40px;
}

p {
    color: #94a3b8;
    line-height: 1.6;
}

button {
    border: 0;
    border-radius: 10px;
    padding: 11px 16px;
    background: #38bdf8;
    color: #082f49;
    font-weight: 700;
    cursor: pointer;
}

.auris-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.auris-card,
.auris-panel {
    border: 1px solid #1e293b;
    border-radius: 16px;
    background: #111827;
}

.auris-card {
    padding: 20px;
}

.metric-label {
    margin: 0 0 8px;
    font-size: 13px;
}

.auris-card h2 {
    margin: 0;
    font-size: 28px;
}

.auris-panel {
    overflow: hidden;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #1e293b;
}

.panel-header h2 {
    margin: 0;
}

#status-text {
    color: #94a3b8;
    font-size: 13px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 14px;
    border-bottom: 1px solid #1e293b;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
}

th {
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

td {
    color: #e5e7eb;
}

@media (max-width: 900px) {
    .auris-shell {
        padding: 24px;
    }

    .auris-header {
        flex-direction: column;
    }

    .auris-grid {
        grid-template-columns: 1fr;
    }
}
