/* Shared UI Components Styles */

/* Navigation */
.main-nav {
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 2px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-title {
    font-size: 1.5em;
    font-weight: 600;
    background: linear-gradient(90deg, #ff6b00, #ffb700, #ff0844, #ff6b00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 4s ease infinite;
}

@keyframes gradient {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #fff;
.nav-links a:hover {
    background: rgba(255, 107, 0, 0.1);
    color: #ffb700;
    transform: translateY(-2px);
}

.nav-links a.active {
    background: linear-gradient(135deg, #ff6b00 0%, #ff0844 100%);
    color: #fff;
    border: 1px solid #ff6b00;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.nav-logout {
    background: rgba(255, 8, 68, 0.1);
    border: 1px solid rgba(255, 8, 68, 0.3);
}

.nav-logout:hover {
    background: rgba(255, 8, 68, 0.2);
    border-color: #ff0844;
}nav-logout {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.nav-logout:hover {
    background: rgba(255, 69, 0, 0.2);
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.2s ease-out;
}

.modal-dialog {
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 107, 0, 0.5);
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(255, 107, 0, 0.4);
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 107, 0, 0.05);
}   padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    color: #fff;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2em;
    font-weight: bold;
}

.modal-icon-success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.modal-icon-error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.modal-icon-info {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 2em;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 1;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
    color: #fff;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body p {
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.modal-body p:last-child {
.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 107, 0, 0.3);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: rgba(255, 107, 0, 0.03);
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    background: rgba(20, 0, 0, 0.8);
}   outline: none;
    border-color: #ff4500;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}
/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 20px auto;
    border: 4px solid rgba(255, 107, 0, 0.2);
    border-top-color: #ff6b00;
    border-right-color: #ffb700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}   margin: 20px auto;
    border: 4px solid rgba(255, 69, 0, 0.2);
    border-top-color: #ff4500;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.text-center {
    text-align: center;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 3000;
    display: flex;
.toast {
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 107, 0, 0.5);
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-out;
}   color: #fff;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-out;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.toast-error {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.toast-info {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
}

.toast-warning {
    border-color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-dialog {
        width: 95%;
    }
    
    .toast-container {
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
}
