/* meai-app/assets/css/style.css (Modern UI) */

body {
    font-family: 'Inter', sans-serif;
}

/* Primary Button Styles */
.btn-primary {
    background-image: linear-gradient(to right, #3B82F6, #2563EB);
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn-primary:hover {
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.6);
    transform: scale(1.03);
}

/* Animated Form Fields */
.form-field {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.5s ease-in-out;
    opacity: 0;
    margin-top: 0;
}

.form-field.visible {
    max-height: 100px;
    opacity: 1;
    margin-top: 1rem;
}

/* Sidebar Navigation Links */
.nav-link.active-nav-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
}

.nav-link:not(.active-nav-link):hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Modal Overlay with Backdrop Blur */
.modal-overlay {
    transition: opacity 0.3s ease;
}

.modal-container {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

/* NEW: Styles for the modern role cards on the main page */
.role-card-v2 {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
