/* Profile Modal Improvements */
.launch-profile-modal {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.launch-profile-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.launch-profile-modal:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.launch-profile-modal:hover:before {
    left: 100%;
}

/* Profile status cards */
.dash-cards {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.dash-cards:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Alert styling for incomplete profile */
.card[style*="border-left: 4px solid #ff6b35"] {
    background: linear-gradient(135deg, #fff5f3 0%, #fff 100%);
    border-radius: 8px !important;
    border-left: 4px solid #ff6b35 !important;
}

/* Modal improvements */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
}

.modal-title {
    color: #495057;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

/* Form improvements */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    transform: translateY(-1px);
}

/* Button improvements */
.btn-update-user-profile {
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-update-user-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Spinner improvements */
#update-user-profile-spinner {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Response message styling */
#update-user-profile-response {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
}

#update-user-profile-response.text-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#update-user-profile-response.text-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Loading state improvements */
.btn-update-user-profile:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-update-user-profile:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .btn-update-user-profile {
        width: 100%;
        margin-top: 1rem;
    }
    
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    .launch-profile-modal {
        width: 100%;
    }
}

/* Animation for profile status change */
@keyframes profileComplete {
    0% {
        background-color: #fff3cd;
        border-color: #ffeaa7;
    }
    100% {
        background-color: #d4edda;
        border-color: #c3e6cb;
    }
}

.profile-complete-animation {
    animation: profileComplete 0.8s ease-in-out;
} 