/* Navbar Styles from Home Page */
.navbar {
    background-color: rgba(12, 11, 19, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-brand .brand-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.user-avatar-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8541d4, #303f9f);
    border-radius: 50%;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.dropdown-menu {
    background-color: rgba(22, 21, 29, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(133, 65, 212, 0.2);
    color: white;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Button Styles from Home Page */
.btn-primary {
    background: linear-gradient(135deg, #8541d4, #303f9f);
    border: none;
    box-shadow: 0 4px 15px rgba(133, 65, 212, 0.3);
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, #4527a0, #8541d4);
    box-shadow: 0 6px 20px rgba(133, 65, 212, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-outline-primary {
    border: 2px solid transparent;
    background: linear-gradient(#0c0b13, #0c0b13) padding-box,
                linear-gradient(135deg, #8541d4, #303f9f) border-box;
    color: #8541d4;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #4527a0, #8541d4);
    color: #fff;
    box-shadow: 0 6px 20px rgba(133, 65, 212, 0.3);
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}