/* Identity Pages Styling */

/* Navigation styling */
.nav-pills .nav-link {
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 12px 16px;
    color: #666;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: #f8f9fa;
    border-color: #FF9800 !important;
    color: #FF9800 !important;
}

.nav-pills .nav-link.active {
    background-color: #FF9800 !important;
    border-color: #FF9800 !important;
    color: white;
}

.nav-pills .nav-link i {
    width: 16px;
    text-align: center;
}

/* Form styling improvements */
.form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #FF9800 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25) !important;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

/* Button improvements */
.btn-link {
    color: #FF9800;
    text-decoration: none;
    padding: 0;
    font-size: 14px;
}

.btn-link:hover {
    color: #e68900;
    text-decoration: underline;
}

/* Status message styling */
.alert {
    border-radius: 8px;
    border: none;
    padding: 16px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Validation error styling */
.text-danger {
    font-size: 12px;
    margin-top: 4px;
}

/* Input group styling */
.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    color: #28a745;
    font-weight: bold;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .nav-pills {
        margin-bottom: 20px;
    }
    
    .nav-pills .nav-link {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .mil-adaptive-right {
        text-align: center;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .nav-pills .nav-link {
        color: #ccc;
        border-color: #444;
    }
    
    .nav-pills .nav-link:hover {
        background-color: #333;
        border-color: #FF9800;
        color: #FF9800;
    }
    
    .form-control {
        background-color: #333;
        border-color: #444;
        color: #fff;
    }
    
    .form-control:focus {
        background-color: #333;
        border-color: #FF9800;
        color: #fff;
    }
    
    .form-label {
        color: #ccc;
    }
}

/* Logout link styling */
.mil-desktop-nav ul li a[href*="Logout"],
.mil-main-menu ul li a[href*="Logout"] {
    color: #dc3545 !important;
    font-weight: 500;
}

.mil-desktop-nav ul li a[href*="Logout"]:hover,
.mil-main-menu ul li a[href*="Logout"]:hover {
    color: #c82333 !important;
}

/* Better spacing for identity pages */
#login, #logout, #manage-account {
    min-height: 60vh;
}