body {
    margin: 0;
    min-height: 100vh;
    background: #FFFFFF !important;
}

.console-page {
    padding: 28px 30px 36px;
    position: relative;
}

.console-page-header {
    margin-bottom: 24px;
    position: relative;
}

.console-page-title {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.15;
    color: #111827;
    letter-spacing: -0.03em;
}

.console-page-desc {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

.console-page-header::after {
    display: none;
}

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

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

.console-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.console-card,
.console-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.console-card {
    padding: 18px 18px 20px;
}

.console-panel {
    padding: 20px 22px;
}

.console-card::before,
.console-panel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #eef2f6;
}

.console-label {
    color: #667085;
    font-size: 13px;
    margin-bottom: 10px;
}

.console-value {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.03em;
}

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

.console-table th,
.console-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    font-size: 14px;
}

.console-table th {
    color: #475467;
    font-weight: 800;
    background: #f8fafc;
}

.console-table tr:last-child td {
    border-bottom: 0;
}

.console-table tbody tr:hover td {
    background: #f8fafc;
}

.console-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.15s ease, opacity 0.15s ease;
}

.console-button:hover {
    background: #0f172a;
}

.console-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.console-button-secondary:hover {
    border-color: #cfd6e2;
    background: #f8fafc;
}

.console-button:focus-visible,
.console-button-secondary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.console-field {
    max-width: 560px;
    margin-bottom: 18px;
}

.console-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.console-input,
.console-select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.console-input:focus,
.console-select:focus {
    outline: none;
    border-color: #98a2b3;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06);
}

.console-list-row {
    display: grid;
    grid-template-columns: 140px 1fr 64px;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.console-bar {
    height: 10px;
    border-radius: 6px;
    background: #e5e7eb;
    overflow: hidden;
}

.console-bar > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #111827;
}

@media (max-width: 1200px) {
    .console-grid,
    .console-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .console-grid,
    .console-grid-2,
    .console-grid-3 {
        grid-template-columns: 1fr;
    }

    .console-page {
        padding: 20px;
    }
}
