:root {
    color-scheme: light;
}

.dark {
    color-scheme: dark;
}

.dark body {
    background-color: #0a0a0a;
    color: #f5f5f5;
}

.dark .bg-white,
.dark .bg-white\/95,
.dark .bg-neutral-50 {
    background-color: #171717;
}

.dark .bg-neutral-100 {
    background-color: #0a0a0a;
}

.dark .bg-neutral-950 {
    background-color: #f5f5f5;
}

.dark .bg-neutral-950.text-white {
    color: #0a0a0a;
}

.dark .border-neutral-200,
.dark .border-neutral-300 {
    border-color: #404040;
}

.dark .text-neutral-950,
.dark .text-neutral-900,
.dark .text-gray-900 {
    color: #f5f5f5;
}

.dark .text-neutral-800,
.dark .text-neutral-700,
.dark .text-gray-700 {
    color: #d4d4d4;
}

.dark .text-neutral-600,
.dark .text-neutral-500,
.dark .text-gray-500,
.dark .text-gray-400 {
    color: #a3a3a3;
}

.dark .hover\:bg-neutral-100:hover {
    background-color: #262626;
}

.dark input,
.dark select,
.dark textarea {
    background-color: #0f0f0f;
    color: #f5f5f5;
    border-color: #404040;
}

.dark code,
.dark .bg-neutral-50,
.dark .bg-neutral-100 {
    background-color: #262626;
}

.dark .shadow-sm,
.dark .shadow-xl {
    box-shadow: 0 1px 2px rgba(0, 0, 0, .45);
}

:root {
    --sade-ink: #111111;
    --sade-border: #e5e5e5;
    --sade-muted: #6b6b6b;
}

body {
    background-color: #ffffff;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.rounded-lg {
    border-radius: 0.75rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shadow-2xl {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bg-neutral-950.text-white,
button.bg-neutral-950,
a.bg-neutral-950 {
    background-color: #111111;
    color: #ffffff;
}

.bg-neutral-950.text-white:hover,
button.bg-neutral-950:hover,
a.bg-neutral-950:hover {
    background-color: #000000;
}

.border-neutral-200 {
    border-color: var(--sade-border);
}

input:focus,
select:focus,
textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
    outline: none;
}

table tbody tr {
    transition: background-color 0.15s ease;
}

table tbody tr:hover {
    background-color: #fafafa;
}

.dark table tbody tr:hover {
    background-color: #1a1a1a;
}

/* ===== BUTTON SYSTEM ===== */

.sade-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 0.75rem;
    background-color: #111111;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    padding: 0.625rem 1rem;
}

.sade-btn:hover {
    background-color: #000000;
}

.sade-btn:active {
    transform: scale(0.98);
}

.sade-btn--block {
    width: 100%;
    padding: 0.875rem 1rem;
}

.sade-btn--small {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
}

.sade-btn--large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

.sade-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    background-color: #ffffff;
    padding: 0.75rem 1rem;
    color: #111111;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.sade-secondary-btn:hover {
    background-color: #fafafa;
    border-color: #d5d5d5;
}

.sade-secondary-btn--compact {
    width: auto;
}

/* ===== FORM SYSTEM ===== */

.sade-form {
    display: grid;
    gap: 1rem;
}

.sade-form--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sade-field {
    display: grid;
    gap: 0.375rem;
}

.sade-field--full {
    display: grid;
    gap: 0.375rem;
    grid-column: 1 / -1;
}

.sade-field label {
    color: #374151;
    font-size: 0.8125rem;
    font-weight: 600;
}

.sade-field input,
.sade-field select,
.sade-field textarea,
.sade-form input,
.sade-form select,
.sade-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    background-color: #ffffff;
    padding: 0.75rem 0.875rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #111111;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sade-field input::placeholder,
.sade-form input::placeholder {
    color: #9ca3af;
}

.sade-field-error {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.sade-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
}

.sade-form-row a {
    color: #111111;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sade-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.sade-check input {
    margin-top: 0.125rem;
    width: 1rem;
    height: 1rem;
    accent-color: #111111;
}

.sade-check a {
    color: #111111;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== CARD SYSTEM ===== */

.sade-card {
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    background-color: #ffffff;
    padding: 1.25rem;
}

.sade-card--flat {
    border: none;
    background-color: transparent;
    padding: 0;
}

.sade-card h2 {
    color: #111111;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sade-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ===== ALERT SYSTEM ===== */

.sade-alert {
    margin-bottom: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    background-color: #ffffff;
    padding: 0.875rem 1rem;
    color: #111111;
    font-size: 0.875rem;
    font-weight: 500;
}

.sade-alert--error {
    border-color: #fca5a5;
    background-color: #fef2f2;
    color: #dc2626;
}

.sade-alert--success {
    border-color: #86efac;
    background-color: #f0fdf4;
    color: #16a34a;
}

/* ===== AUTH LAYOUT ===== */

.auth-shell {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.auth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem clamp(1rem, 4vw, 2rem);
    border-bottom: 1px solid #e5e5e5;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    color: #111111;
}

.auth-brand__text {
    font-size: 0.9375rem;
}

.auth-language {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.auth-language a {
    border-radius: 0.5rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.auth-language a:hover {
    background-color: #f5f5f5;
    color: #111111;
}

.auth-language a.is-active {
    background-color: #111111;
    color: #ffffff;
}

.auth-main {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
}

.auth-card {
    width: min(100%, 28rem);
    padding: 2rem;
}

.auth-card__brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-card__brand p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.auth-copy {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-copy h1 {
    color: #111111;
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.1;
    font-weight: 700;
}

.auth-copy p {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-top: 0.375rem;
}

.auth-divider {
    position: relative;
    margin: 1.25rem 0;
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auth-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e5e5e5;
}

.auth-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 0.75rem;
}

.auth-switch {
    margin-top: 1.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.auth-switch a {
    color: #111111;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.auth-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e5e5e5;
    color: #9ca3af;
    font-size: 0.8125rem;
}

.auth-footer a {
    color: #6b7280;
    transition: color 0.2s ease;
}

.auth-footer a:hover {
    color: #111111;
}

.sade-google-mark {
    display: grid;
    width: 1.25rem;
    height: 1.25rem;
    place-items: center;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #e5e5e5;
}

/* ===== ACCOUNT LAYOUT ===== */

.account-shell {
    min-height: 100vh;
    background-color: #fafafa;
}

.account-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 30;
}

.account-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    color: #111111;
}

.account-brand span {
    font-size: 0.875rem;
}

.account-actions {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.account-actions a,
.account-actions button {
    border-radius: 0.5rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    transition: background-color 0.2s ease, color 0.2s ease;
    background: transparent;
    cursor: pointer;
}

.account-actions a:hover,
.account-actions button:hover {
    background-color: #f5f5f5;
    color: #111111;
}

.account-actions a.is-active {
    background-color: #111111;
    color: #ffffff;
}

.account-main {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem clamp(1rem, 4vw, 2rem);
}

.account-profile-hero {
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.account-avatar {
    position: relative;
    display: grid;
    place-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 999px;
    background-color: #111111;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    overflow: hidden;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-profile-hero h1 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    color: #111111;
}

.account-profile-hero p {
    color: #6b7280;
    font-size: 0.875rem;
}

.account-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #6b7280 !important;
    font-weight: 600;
}

.account-tabs {
    display: flex;
    gap: 0.375rem;
    overflow-x: auto;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 1.5rem;
}

.account-tabs a {
    flex: 0 0 auto;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    padding: 0.5rem 0.875rem;
    color: #6b7280;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.account-tabs a:hover {
    background-color: #f5f5f5;
    color: #111111;
}

.account-tabs a.is-active {
    background-color: #111111;
    color: #ffffff;
}

.account-content {
    display: grid;
    gap: 1.25rem;
}

.account-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
}

.account-photo-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.avatar-form {
    display: grid;
    gap: 1rem;
}

.avatar-upload {
    position: relative;
    display: block;
    cursor: pointer;
}

.avatar-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.avatar-upload__image {
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    background-color: #111111;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.avatar-upload__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-upload__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.avatar-upload:hover .avatar-upload__overlay {
    opacity: 1;
}

.account-verification {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    padding: 0.75rem 0.875rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.account-footer {
    padding: 2rem 0 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.8125rem;
    border-top: 1px solid #e5e5e5;
    margin-top: 2rem;
}

/* ===== ADMIN LAYOUT ===== */

.admin-shell {
    display: grid;
    grid-template-columns: 16rem 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background-color: #ffffff;
    border-right: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    z-index: 20;
}

.admin-sidebar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e5e5;
}

.admin-sidebar__brand span {
    display: flex;
    flex-direction: column;
}

.admin-sidebar__brand span span:first-child {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111111;
}

.admin-sidebar__brand span span:last-child {
    font-size: 0.6875rem;
    color: #9ca3af;
}

.admin-sidebar__nav {
    flex: 1;
    padding: 0.75rem;
    overflow-y: auto;
}

.admin-nav-item {
    display: block;
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.admin-nav-item:hover {
    background-color: #f5f5f5;
    color: #111111;
}

.admin-nav-item.is-active {
    background-color: #111111;
    color: #ffffff;
}

.admin-sidebar__footer {
    padding: 0.75rem;
    border-top: 1px solid #e5e5e5;
}

.admin-sidebar__footer a,
.admin-sidebar__footer button {
    display: block;
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    transition: background-color 0.15s ease, color 0.15s ease;
    width: 100%;
    text-align: left;
    background: transparent;
    cursor: pointer;
}

.admin-sidebar__footer a:hover,
.admin-sidebar__footer button:hover {
    background-color: #f5f5f5;
    color: #111111;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.admin-topbar h1 {
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
}

.admin-topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-topbar__actions a {
    border-radius: 0.5rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-topbar__actions a:hover {
    background-color: #f5f5f5;
    color: #111111;
}

.admin-topbar__actions a.is-active {
    background-color: #111111;
    color: #ffffff;
}

.admin-content {
    padding: 1.5rem;
    background-color: #fafafa;
    min-height: 100vh;
}

/* ===== MODAL ===== */

.sade-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem;
}

.sade-modal.is-open {
    display: flex;
}

.sade-modal__panel {
    width: min(100%, 24rem);
    border-radius: 0.75rem;
    background-color: #ffffff;
    padding: 1.5rem;
}

.sade-modal__panel h2 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111111;
}

.sade-modal__panel p {
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.sade-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

/* ===== COOKIE CONSENT ===== */

.cookie-consent {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: min(32rem, calc(100vw - 2rem));
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    background-color: #ffffff;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__title {
    color: #111111;
    font-size: 0.875rem;
    font-weight: 600;
}

.cookie-consent__body {
    margin-top: 0.125rem;
    color: #6b7280;
    font-size: 0.8125rem;
}

/* ===== TABLE SYSTEM ===== */

.sade-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.sade-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    border-bottom: 1px solid #e5e5e5;
    background-color: #fafafa;
}

.sade-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #374151;
}

.sade-table tr:last-child td {
    border-bottom: none;
}

.sade-table tr:hover td {
    background-color: #fafafa;
}

/* ===== BADGE SYSTEM ===== */

.sade-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sade-badge--active {
    background-color: #f0fdf4;
    color: #16a34a;
}

.sade-badge--suspended {
    background-color: #fef2f2;
    color: #dc2626;
}

.sade-badge--pending {
    background-color: #fffbeb;
    color: #d97706;
}

.sade-badge--dark {
    background-color: #111111;
    color: #ffffff;
}

/* ===== INPUT GROUPS ===== */

.sade-input-group {
    display: flex;
    gap: 0;
}

.sade-input-group input {
    border-radius: 0.75rem 0 0 0.75rem;
}

.sade-input-group button {
    border-radius: 0 0.75rem 0.75rem 0;
    border-left: none;
}

/* ===== STAT CARDS ===== */

.sade-stat {
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    background-color: #ffffff;
    padding: 1.25rem;
}

.sade-stat__label {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

.sade-stat__value {
    margin-top: 0.375rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111111;
}

.sade-stat__meta {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: fixed;
        left: -16rem;
        top: 0;
        height: 100vh;
        width: 16rem;
        transition: left 0.3s ease;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    }

    .admin-sidebar.is-open {
        left: 0;
    }

    .admin-backdrop {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 15;
        display: none;
    }

    .admin-backdrop.is-visible {
        display: block;
    }

    .admin-topbar #adminMenuButton {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .account-shell {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .account-main {
        max-width: 100%;
        padding: 1rem clamp(0.75rem, 3vw, 1rem);
        overflow-x: hidden;
    }

    .account-grid,
    .sade-form--grid {
        grid-template-columns: 1fr;
    }

    .account-profile-hero {
        padding: 1.5rem 1rem 1.25rem;
    }

    .account-avatar {
        width: 4.5rem;
        height: 4.5rem;
    }

    .account-avatar span {
        font-size: 1rem;
    }

    .account-tabs {
        gap: 0.25rem;
        padding: 0.75rem 0;
        margin-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .account-tabs a {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
    }

    .account-topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0.75rem clamp(0.75rem, 3vw, 1rem);
    }

    .account-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .account-content {
        gap: 1rem;
    }

    .sade-card {
        padding: 1rem;
    }

    .sade-form {
        gap: 0.75rem;
    }

    .auth-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-consent {
        flex-direction: column;
        right: 0.5rem;
        left: 0.5rem;
        bottom: 0.5rem;
        max-width: none;
    }

    .sade-table {
        font-size: 0.8125rem;
    }

    .sade-table th,
    .sade-table td {
        padding: 0.5rem 0.625rem;
    }
}

@media (max-width: 480px) {
    .account-tabs {
        gap: 0.25rem;
    }

    .account-tabs a {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
    }
}
