body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-page .login-left {
    background: linear-gradient(135deg, #eaf2ff, #f8fbff);
}

.login-box {
    background: #fff;
}

.sidebar {
    width: 250px;
    min-height: 100vh;
}

.sidebar .nav-link {
    border-radius: 12px;
    padding: 10px 14px;
    transition: 0.3s;
}

.sidebar .nav-link:hover,
.active-link {
    background: rgba(255,255,255,0.12);
}

.main-content {
    width: calc(100% - 250px);
}

.card {
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.table td, .table th {
    vertical-align: middle;
}

.badge {
    font-size: 0.8rem;
    padding: 8px 10px;
    border-radius: 999px;
}

.form-control,
.form-select {
    border-radius: 12px;
    min-height: 46px;
}

textarea.form-control {
    min-height: auto;
}

.btn {
    border-radius: 12px;
}

.card {
    border-radius: 20px !important;
}

.btn-track:hover {
    background: #0d6efd !important;
}

body {
    scroll-behavior: smooth;
}

.shadow-soft {
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-5 {
    border-radius: 1.5rem !important;
}

/* Sidebar Logout Button */
.sidebar-logout-btn {
    transition: all 0.25s ease;
    font-size: 15px;
}

.sidebar-logout-btn:hover {
    background-color: #dc3545 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(220, 53, 69, 0.18);
}

/* Sidebar User Card */
.sidebar-user-card {
    transition: all 0.25s ease;
}

.sidebar-user-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

/* Avatar Circle */
.sidebar-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d6efd, #4f46e5);
    font-size: 18px;
    box-shadow: 0 6px 14px rgba(13, 110, 253, 0.25);
}