/* Glass card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    /*transition: all 0.3s ease;*/
}

.glass-card:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

/* Glow button */
.btn-glow {
    background: var(--primary-gradient);
    border: none;
    color: white;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-glow:disabled {
    opacity: 0.6;
    transform: none;
}

/* Form controls */
.form-control, .form-select {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    border-radius: 12px;
    padding: 12px;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25) !important;
}

.form-control:disabled, .form-select:disabled {
    opacity: 0.5;
}

/* Form check */
.form-check-input {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.15rem;
}

.form-check-input:checked {
    background: var(--primary-gradient);
    border-color: transparent;
}

/* Navigation */
.navbar {
    background: var(--primary-gradient);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

/* Badge */
.badge-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
}

.alert-success {
    background: rgba(25, 135, 84, 0.25);
    color: #a3e0b0;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.25);
    color: #ffb0b0;
}

/* Profile button */
.btn-profile {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.2s ease;
}

.btn-profile:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-profile:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.4);
}

/* Dropdown menu */
.dropdown-menu-dark {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
}

.dropdown-menu-dark .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-menu-dark .dropdown-item:hover {
    background: rgba(102, 126, 234, 0.2);
    color: white;
}

.dropdown-menu-dark .dropdown-item.text-danger:hover {
    background: rgba(220, 53, 69, 0.2);
}