:root {
    --primary-color: #4F5062;
    --primary-dark: #3d3e4e;
    --primary-light: #68829D;
    --secondary-color: #6882A0;
    --secondary-dark: #556b84;
    --accent-color: #adbc3f;
    --accent-dark: #8d9c2f;
    --danger-color: #dc4c64;
    --success-color: #adbc3f;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-gray: #f0f1f3;
    --text-dark: #2a2b35;
    --text-medium: #4F5062;
    --text-muted: #68829d;
    --border-color: #d8d9dd;
    --shadow-sm: 0 1px 2px 0 rgba(79, 80, 98, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(79, 80, 98, 0.15), 0 2px 4px -1px rgba(79, 80, 98, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(79, 80, 98, 0.15), 0 4px 6px -2px rgba(79, 80, 98, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(79, 80, 98, 0.15), 0 10px 10px -5px rgba(79, 80, 98, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #4F5062 0%, #3d3e4e 100%);
    padding: 0;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-light));
}

.sidebar-header {
    padding: 32px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-header .logo {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(79, 80, 98, 0.3);
    overflow: hidden;
}

.sidebar-header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar-header h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

main {
    flex: 1;
    overflow: auto;
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.top-row {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.top-row .user-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--bg-gray);
    transition: all 0.2s;
    cursor: pointer;
}

.top-row .user-section:hover {
    background: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.top-row .user-icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
}

.top-row .user-section span {
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
}

.top-row a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.top-row a:hover {
    color: var(--primary-color);
}

.content {
    padding: 32px;
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 32px;
}

.page-header h3 {
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.page-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 16px;
}

.card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

/* Navigation Menu Styles */
.nav-menu ul {
    list-style: none;
    padding: 16px 12px;
    margin: 0;
}

.nav-menu li {
    margin: 0 0 4px 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.2s;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.nav-menu a:hover::before {
    transform: scaleY(1);
}

.nav-menu a.active {
    background: rgba(173, 188, 63, 0.15);
    color: white;
}

.nav-menu a.active::before {
    transform: scaleY(1);
}

.nav-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke-width: 2.5;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.dashboard-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.dashboard-card:hover::before {
    transform: scaleX(1);
}

.dashboard-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.dashboard-card:hover .dashboard-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.dashboard-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.dashboard-card-icon.accounts {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.dashboard-card-icon.transactions {
    background: linear-gradient(135deg, var(--secondary-color), #5a9e8a);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.dashboard-card-icon.trading {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    box-shadow: 0 4px 12px rgba(173, 188, 63, 0.4);
}

.dashboard-card-content {
    flex: 1;
}

.dashboard-card-content h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.dashboard-card-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.dashboard-card-arrow {
    width: 24px;
    height: 24px;
    opacity: 0.4;
    transition: all 0.3s;
}

.dashboard-card:hover .dashboard-card-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.dashboard-card-arrow svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-muted);
    stroke-width: 2;
}

.rz-datatable {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.rz-datatable-data td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}

.rz-datatable-data tr:last-child td {
    border-bottom: none;
}

.rz-datatable-data tr:hover {
    background: var(--bg-gray);
}

.rz-datatable th {
    background: var(--bg-gray);
    font-weight: 600;
    padding: 16px;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-medium);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rz-paginator {
    padding: 16px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.positive-amount {
    color: var(--accent-color);
    font-weight: 600;
}

.negative-amount {
    color: var(--danger-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 240px;
    }
    
    .content {
        padding: 20px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h3 {
        font-size: 24px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.gap-3 {
    gap: 1rem;
}

/* Enhanced Card Styles for Trading Page */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 12px;
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.card.text-white {
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
}

.card.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.card.bg-info {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.card.bg-secondary {
    background: linear-gradient(135deg, #7a7b8a, #5a5b6a);
}

.card.bg-success {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.card.bg-danger {
    background: linear-gradient(135deg, var(--danger-color), #c43b54);
}

.card.bg-warning {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.card-body small {
    opacity: 0.85;
    font-size: 13px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-success {
    background: var(--accent-color);
    color: white;
}

.badge.bg-warning {
    background: var(--accent-color);
    color: white;
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid;
}

.alert-warning {
    background: #fff6e6;
    border-color: var(--accent-color);
    color: #6a5a3a;
}

.alert-info {
    background: #e8f0f5;
    border-color: var(--secondary-color);
    color: var(--primary-dark);
}

.alert-success {
    background: #f5f8e8;
    border-color: var(--accent-color);
    color: #4a5020;
}

.alert-danger {
    background: #fee8ec;
    border-color: var(--danger-color);
    color: #8a2a3a;
}

.spinner-border {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border: 0.3em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* CV Page Styles */
.cv-page {
    max-width: 1200px;
    margin: 0 auto;
}

.cv-page section {
    margin-bottom: 64px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 20px;
    padding: 64px 48px;
    margin-bottom: 64px;
    box-shadow: var(--shadow-xl);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    background: white;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text h1 {
    margin: 0 0 8px 0;
    font-size: 42px;
    font-weight: 700;
    color: white;
}

.hero-text h2 {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-primary-large {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-light));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Skills Section */
.skills-section {
    background: var(--bg-gray);
    padding: 64px 32px;
    border-radius: 20px;
    margin-left: -32px;
    margin-right: -32px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.skill-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.skill-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.skill-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.skill-icon.cloud {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.skill-icon.code {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.skill-icon.database {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.skill-icon.security {
    background: linear-gradient(135deg, #dc4c64, #c43b54);
}

.skill-icon.automation {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
}

.skill-icon.consulting {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.skill-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.skill-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-item {
    position: relative;
    padding: 32px 28px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.service-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-gray);
    line-height: 1;
    margin-bottom: 16px;
}

.service-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.service-item p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa, #eff0f2);
    padding: 64px 48px;
    border-radius: 20px;
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content > p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.cta-download {
    margin-top: 32px;
}

/* Responsive Design for CV Page */
@media (max-width: 768px) {
    .hero-section {
        padding: 48px 32px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text h2 {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .skills-section {
        padding: 48px 24px;
        margin-left: -20px;
        margin-right: -20px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 48px 24px;
    }
}

/* Login Page Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.login-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(79, 80, 98, 0.1);
    max-width: 450px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.login-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(173, 188, 63, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    margin: 0;
}

.btn-login {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-muted) 100%);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 80, 98, 0.2);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-danger {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-warning {
    background-color: #fff4e6;
    color: #cc8800;
    border: 1px solid #ffe0b2;
}

.validation-message {
    color: #c33;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.login-footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--accent-color);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    margin: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-muted) 100%);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 80, 98, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(173, 188, 63, 0.1);
}

/* Nav Footer Styles */
.nav-footer {
    padding: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(79, 80, 98, 0.1);
}

.nav-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-footer-links .nav-item {
    border-radius: 10px;
    transition: all 0.2s ease;
}

.nav-footer-links .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.nav-footer-links .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.nav-footer-links .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.2s;
}

.nav-footer-links .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.nav-footer-links .nav-link:hover::before {
    transform: scaleY(1);
}

.nav-footer-links .nav-link.active {
    background: rgba(173, 188, 63, 0.15);
    color: white;
}

.nav-footer-links .nav-link.active::before {
    transform: scaleY(1);
}

.nav-footer-links .nav-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

/* User Management Page Styles */
.user-management-container {
    padding: 2rem;
}

.user-management-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.user-management-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.user-form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(79, 80, 98, 0.08);
    margin-bottom: 2rem;
}

.user-form-header {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.user-grid {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(79, 80, 98, 0.08);
}

/* Responsive adjustments for login page */
@media (max-width: 768px) {
    .login-card {
        padding: 2rem;
    }

    .login-header h2 {
        font-size: 1.6rem;
    }
}
