/* Saldo Buddy Admin Tweaks – dark theme polish */

:root {
    --sb-radius: 8px;
    --sb-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Cards softer */
.card, .content-wrapper, .modal-content {
    border-radius: var(--sb-radius) !important;
    box-shadow: var(--sb-shadow);
}

/* Table rows hover */
.table-hover tbody tr:hover {
    background-color: rgba(255,255,255,0.04) !important;
}

/* Form controls */
.form-control, .form-select, .select2-container--default .select2-selection--single {
    border-radius: 6px !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary, #3498db) !important;
    box-shadow: 0 0 0 0.2rem rgba(52,152,219,0.25) !important;
}

/* Buttons softer */
.btn {
    border-radius: 6px !important;
    transition: all 0.15s ease;
}

/* Brand area */
.brand-link {
    font-weight: 600 !important;
    letter-spacing: 0.3px;
}

/* Nav sidebar active item accent */
.nav-sidebar .nav-link.active {
    border-radius: 6px;
    font-weight: 500;
}

/* Submit row sticky */
.submit-row {
    border-radius: 0 0 var(--sb-radius) var(--sb-radius);
}

/* Alerts rounded */
.alert {
    border-radius: var(--sb-radius);
}

/* Login page */
.login-box, .register-box {
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    border-radius: 12px;
}

.login-logo {
    font-weight: 600;
}

/* Dropdown menus */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}

/* Dashboard info boxes */
.small-box {
    border-radius: var(--sb-radius);
}

.small-box .icon > i {
    opacity: 0.3;
}
