:root {
    --primary-color: #4285F4;
    --secondary-color: #34A853;
    --dark-bg: #1A237E;
    --light-bg: #283593;
    --text-color: #FFFFFF;
    --text-secondary: #E0E0E0;
    --accent-color: #FBBC05;
    --danger-color: #EA4335;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--light-bg);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    background: rgba(40, 53, 147, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    margin-right: 10px;
    height: 40px;
    width: auto;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    white-space: nowrap;
}
.remember-me {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.remember-me input {
    margin-right: 8px;
}
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher button {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.language-switcher button:hover,
.language-switcher button.active {
    background-color: var(--primary-color);
    color: white;
}

/* Auth Section */
.auth-section {
    display: flex;
    align-items: center;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-buttons button {
    background: none;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-buttons button:hover {
    background-color: var(--text-color);
    color: var(--dark-bg);
}

.auth-buttons button.primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.auth-buttons button.primary:hover {
    background-color: #3367D6;
}

.user-menu {
    position: relative;
    margin-left: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Add this to your CSS file (replace existing avatar styles) */
.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-right: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.user-avatar-small {
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    margin-right: 8px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.user-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-toggle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 5px;
}

.user-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.user-dropdown a i {
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

.user-dropdown a.logout-link {
    color: var(--danger-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5px;
    padding-top: 15px;
}

.user-dropdown a.logout-link:hover {
    background: rgba(234, 67, 53, 0.1);
    color: var(--danger-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.8)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--dark-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .btn {
    background: linear-gradient(135deg, var(--primary-color), #3367D6);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.service-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(40, 53, 147, 0.95), rgba(26, 35, 126, 0.95));
    padding: 60px 0 30px;
    backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--light-bg);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
    background: rgba(0, 0, 0, 0.05);
}

.modal-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-weight: 500;
}

.modal-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.modal-form {
    display: none;
}

.modal-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Service Detail */
.service-detail {
    padding: 100px 0;
    min-height: 80vh;
}

.service-detail-container {
    background-color: var(--light-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.service-detail-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.service-detail-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-detail-info p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.service-detail-form {
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-features {
    margin: 30px 0;
}

.service-features p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Dashboard Specific Styles */
.dashboard-hero {
    background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(40, 53, 147, 0.9)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
}

.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.user-welcome {
    text-align: center;
    margin-bottom: 40px;
}

.user-welcome h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.user-welcome p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.user-profile-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    margin: 0 auto 50px;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.user-profile-card:hover {
    transform: translateY(-5px);
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-direction: column;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.profile-info {
    text-align: center;
}

.profile-info h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 600;
}

.profile-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.profile-actions .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.profile-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #3367D6);
    color: white;
}

.profile-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

.profile-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.profile-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.services-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dashboard-icon {
    color: #FFFFFF;
    margin-right: 10px;
}


.service-page-auth .user-details-small {
    font-size: 12px;
}

.service-page-auth .user-name-small {
    color: white;
    font-weight: 600;
}

.service-page-auth .user-email-small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

/* Disabled Links */
a.disabled {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
    text-decoration: none;
}

a.disabled::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1000;
}

a.disabled:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 10px 0;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .user-info-header {
        display: none;
    }
    
    .auth-buttons {
        margin-top: 10px;
    }
    
    .user-details {
        display: none;
    }
    
    .user-info {
        padding: 8px 10px;
    }
    
    .user-dropdown {
        right: -10px;
    }
    
    .dashboard-hero {
        min-height: 50vh;
        padding: 60px 0 30px;
    }
    
    .user-welcome h2 {
        font-size: 2.2rem;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
        font-size: 36px;
    }
    
    .profile-info h3 {
        font-size: 24px;
    }
    
    .profile-info p {
        font-size: 16px;
    }
    
    .profile-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Dodajte ove stilove na kraj fajla */

/* Dashboard navigation item */
.dashboard-nav-item {
    margin-left: 25px;
}

.dashboard-nav-item a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.dashboard-nav-item a:hover, 
.dashboard-nav-item a.active {
    color: var(--primary-color);
}

/* Service page user info */
.service-page-auth {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-page-auth p {
    margin-bottom: 15px;
    font-weight: 500;
}

.user-info-small {
    display: flex;
    align-items: center;
}

.user-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-right: 15px;
}

.user-details-small {
    display: flex;
    flex-direction: column;
}

.user-name-small {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.user-email-small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Disabled links */
a.disabled {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
    text-decoration: none;
}

a.disabled::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1000;
}

a.disabled:hover::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-nav-item {
        margin: 10px 0;
    }
    
    .service-page-auth {
        padding: 15px;
    }
    
    .user-info-small {
        flex-direction: column;
        text-align: center;
    }
    
    .user-avatar-small {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Dashboard navigation item */
.dashboard-nav-item {
    margin-left: 25px;
}

.dashboard-nav-item a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.dashboard-nav-item a:hover, 
.dashboard-nav-item a.active {
    color: var(--primary-color);
}

/* Service page user info */
.service-page-auth {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-page-auth p {
    margin-bottom: 15px;
    font-weight: 500;
}

.user-info-small {
    display: flex;
    align-items: center;
}

.user-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-right: 15px;
}

.user-details-small {
    display: flex;
    flex-direction: column;
}

.user-name-small {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.user-email-small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Disabled links */
a.disabled {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
    text-decoration: none;
}

a.disabled::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1000;
}

a.disabled:hover::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-nav-item {
        margin: 10px 0;
    }
    
    .service-page-auth {
        padding: 15px;
    }
    
    .user-info-small {
        flex-direction: column;
        text-align: center;
    }
    
    .user-avatar-small {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.profile-avatar-shield {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.profile-avatar-shield i {
    font-size: 70px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.profile-avatar-shield span {
    font-size: 36px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

/* Add shield border effect */
.profile-avatar-shield::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(8px);
}

/* Add shine effect */
.profile-avatar-shield::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

.reset-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0,20,60,0.9) 0%, rgba(0,40,80,0.8) 100%);
    padding: 20px;
}

.reset-password-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.reset-password-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #001440;
}

.reset-password-form .form-group {
    margin-bottom: 20px;
}

.reset-password-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.reset-password-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.reset-password-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.reset-password-form .btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reset-password-form .btn:hover {
    background-color: #45a049;
}

.back-to-home {
    text-align: center;
    margin-top: 20px;
}

.back-to-home a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.back-to-home a:hover {
    text-decoration: underline;
}
.forgot-password {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 15px;
}

.forgot-password a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    .reset-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0,20,60,0.9) 0%, rgba(0,40,80,0.8) 100%);
    padding: 20px;
}

.reset-password-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.reset-password-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #001440;
}

.reset-password-form .form-group {
    margin-bottom: 20px;
}

.reset-password-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.reset-password-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.reset-password-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.reset-password-form .btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reset-password-form .btn:hover {
    background-color: #45a049;
}

.back-to-home {
    text-align: center;
    margin-top: 20px;
}

.back-to-home a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.back-to-home a:hover {
    text-decoration: underline;
}
/* Modal forme */
.modal-form {
    display: none;
}

.modal-form.active {
    display: block;
}

/* Forgot password forma */
.forgot-password {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 15px;
}

.forgot-password a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.back-to-login {
    text-align: center;
    margin-top: 20px;
}

.back-to-login a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.back-to-login a:hover {
    text-decoration: underline;
}

#forgot-password-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}
    text-decoration: underline;
}

.back-to-login {
    text-align: center;
    margin-top: 20px;
}

.back-to-login a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.back-to-login a:hover {
    text-decoration: underline;
}

#forgot-password-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}
.reset-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0,20,60,0.9) 0%, rgba(0,40,80,0.8) 100%);
    padding: 20px;
}

.reset-password-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.reset-password-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #001440;
}

.reset-password-form .form-group {
    margin-bottom: 20px;
}

.reset-password-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.reset-password-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.reset-password-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.reset-password-form .btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reset-password-form .btn:hover {
    background-color: #45a049;
}

.back-to-home {
    text-align: center;
    margin-top: 20px;
}

.back-to-home a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.back-to-home a:hover {
    text-decoration: underline;
}
/* Modal forme */
.modal-form {
    display: none;
}

.modal-form.active {
    display: block;
}

/* Forgot password forma */
.forgot-password {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 15px;
}

.forgot-password a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.back-to-login {
    text-align: center;
    margin-top: 20px;
}

.back-to-login a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.back-to-login a:hover {
    text-decoration: underline;
}

#forgot-password-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}