/* ===== Vue Cloak - Hide until Vue mounts ===== */
[v-cloak] {
    display: none !important;
}

html, body {
    height: 100%;
}

/* ===== Global Scrollbars ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.25);
}

/* ===== Input Focus States ===== */
.v-field--focused .v-field__outline {
    --v-field-border-opacity: 1;
}

/* ===== Data Table Enhancements ===== */
.v-data-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02) !important;
}

.v-data-table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.01);
}

.v-data-table th {
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.75rem !important;
    letter-spacing: 0.5px;
}

/* ===== Links ===== */
a {
    color: #18181B;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

/* ===== Feature List (billing) ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Settings Tabs ===== */
.settings-tabs .v-tab {
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0;
}
