* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 15px 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.nav-menu a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
}

.features {
    margin-bottom: 40px;
}

.features h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card h3 {
    color: #3498db;
    margin-bottom: 10px;
}

.form-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert.error {
    background: #ffdddd;
    border-left: 4px solid #f44336;
}

.alert.success {
    background: #ddffdd;
    border-left: 4px solid #4CAF50;
}

.alert.info {
    background: #ddffff;
    border-left: 4px solid #2196F3;
}

.dashboard-container,
.admin-dashboard,
.admin-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.registration-status,
.info-card {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.status-pending {
    color: #e67e22;
    font-weight: bold;
}

.status-approved {
    color: #27ae60;
    font-weight: bold;
}

.status-rejected {
    color: #e74c3c;
    font-weight: bold;
}

.status-paid {
    color: #27ae60;
    font-weight: bold;
}

.status-overdue {
    color: #e74c3c;
    font-weight: bold;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.stat-card {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}

.admin-actions {
    margin-top: 30px;
    text-align: center;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.data-table th,
.data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.data-table tr:hover {
    background-color: #f8f9fa;
}

.inline-form {
    display: inline;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #2c3e50;
    color: white;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }
    
    .stat-card {
        margin: 10px 0;
    }
    
    .nav-container {
        flex-direction: column;
    }
    
    .nav-menu {
        margin-top: 15px;
    }
    
    .nav-menu a {
        margin: 0 10px 0 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .data-table {
        display: block;
        overflow-x: auto;
    }
}
/* Add to your existing CSS */
.invoice-details {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.payment-info {
    margin-top: 20px;
    padding: 20px;
    background: #e8f4f8;
    border-radius: 5px;
    border: 1px solid #b8e2f0;
}

.payment-details {
    background: white;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.payment-details p {
    margin: 8px 0;
}

.important-note {
    color: #e74c3c;
    font-weight: bold;
    padding: 10px;
    background: #ffeaea;
    border-radius: 4px;
    border-left: 3px solid #e74c3c;
}

.status-pending {
    color: #e67e22;
    font-weight: bold;
    padding: 3px 8px;
    background: #fff3e0;
    border-radius: 3px;
}

.status-approved {
    color: #27ae60;
    font-weight: bold;
    padding: 3px 8px;
    background: #e8f5e9;
    border-radius: 3px;
}

.status-rejected {
    color: #e74c3c;
    font-weight: bold;
    padding: 3px 8px;
    background: #ffebee;
    border-radius: 3px;
}

.status-paid {
    color: #27ae60;
    font-weight: bold;
    padding: 3px 8px;
    background: #e8f5e9;
    border-radius: 3px;
}

.status-overdue {
    color: #e74c3c;
    font-weight: bold;
    padding: 3px 8px;
    background: #ffebee;
    border-radius: 3px;
}
/* Attendance List Styles */
.attendees-count {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #27ae60;
}

.attendees-count p {
    margin: 0;
    font-size: 1.1rem;
}

.public-attendance-list {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
}

/* Table improvements */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.data-table th {
    background-color: #2c3e50;
    color: white;
    padding: 12px;
    text-align: left;
}

.data-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.data-table tr:hover {
    background-color: #f5f5f5;
}

/* Admin actions */
.admin-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.admin-actions .btn {
    padding: 10px 15px;
}
/* Additional status styles */
.status-approved {
    color: #27ae60;
    font-weight: bold;
    padding: 3px 8px;
    background: #e8f5e9;
    border-radius: 3px;
}

.status-rejected {
    color: #e74c3c;
    font-weight: bold;
    padding: 3px 8px;
    background: #ffebee;
    border-radius: 3px;
}

/* Payment info success */
.payment-info.success {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
}

.payment-info.success h3 {
    color: #27ae60;
}

/* Invoice status display */
.invoice-status {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}

.invoice-status.approved {
    background: #e8f5e9;
    border-left: 4px solid #27ae60;
}

.invoice-status.pending {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.invoice-status.rejected {
    background: #ffebee;
    border-left: 4px solid #f44336;
}
/* Disabled dropdown style */
select:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.speaker-note {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}
/* Profile Page Styles */
.profile-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Admin Management Styles */
.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.inline-form {
    display: inline;
}

/* User table styles */
.data-table select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
/* Profile View Styles */
.profile-view {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f4;
}

.profile-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: #2d3748;
}

.user-role {
    background: #e2e8f0;
    color: #4a5568;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-item label {
    font-weight: 600;
    color: #4a5568;
    min-width: 120px;
}

.detail-item span,
.detail-item p {
    color: #2d3748;
    flex: 1;
}

.detail-item.bio {
    flex-direction: column;
}

.detail-item.bio label {
    margin-bottom: 10px;
}

.profile-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f1f3f4;
}

.admin-badge {
    background: #dcfce7;
    color: #166534;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-left: 10px;
}
/* User Management Styles */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 200px;
}

.action-buttons form {
    margin: 0;
}

.inline-form {
    display: inline;
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 2px;
}

.status-badge.active {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.inactive {
    background: #fee2e2;
    color: #b91c1c;
}

.status-badge.locked {
    background: #fef3c7;
    color: #92400e;
}

.user-inactive {
    background-color: #f8f9fa;
    opacity: 0.7;
}

.user-inactive td {
    color: #6c757d !important;
}

.btn-small {
    padding: 4px 8px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.btn-warning {
    background: #f59e0b;
    color: white;
}

.btn-warning:hover {
    background: #d97706;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-success:hover {
    background: #059669;
}

/* Responsive tables */
@media (max-width: 1200px) {
    .action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
/* Profile Form Styles */
.profile-form h3 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin: 30px 0 20px 0;
}

.profile-form h3:first-of-type {
    margin-top: 0;
}

.form-help {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 20px;
}

/* Password fields styling */
.password-fields {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

/* Alert styles */
.alert {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert.error {
    background: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

.alert.success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

/* Form row adjustments for password fields */
.form-row .form-group {
    margin-bottom: 15px;
}

.form-row .form-group small {
    display: block;
    color: #6c757d;
    font-size: 0.85em;
    margin-top: 5px;
}

/* Status badges for view-profile.php */
.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 10px;
}

.status-badge.active {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.inactive {
    background: #fee2e2;
    color: #b91c1c;
}

.status-badge.locked {
    background: #fef3c7;
    color: #92400e;
}

/* Profile actions styling */
.profile-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.profile-actions .btn {
    padding: 8px 16px;
}
/* Status styles */
.status-pending {
    color: #e67e22;
    font-weight: bold;
}

.status-approved {
    color: #27ae60;
    font-weight: bold;
}

.status-rejected {
    color: #e74c3c;
    font-weight: bold;
}

.status-paid {
    color: #27ae60;
    font-weight: bold;
}

/* Payment info styles */
.payment-info {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.payment-info.success {
    background: #e8f5e9;
    border-left-color: #27ae60;
}

.payment-details {
    background: white;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.important-note {
    color: #e74c3c;
    font-weight: bold;
    padding: 10px;
    background: #ffeaea;
    border-radius: 4px;
    border-left: 3px solid #e74c3c;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.info-card code {
    background: #e9ecef;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: monospace;
    color: #495057;
    margin: 10px 0;
    display: inline-block;
}
/* Password Change Section */
.password-change-section {
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.password-change-section h3 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.password-change-section .form-group {
    margin-bottom: 20px;
}

.password-change-section label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.password-change-section input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.password-change-section small {
    color: #6c757d;
    font-size: 0.85em;
}

/* Alert styles */
.alert {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert.error {
    background: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

.alert.success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}
/* Login Page Specific Styles */
.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}

.login-page .container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.login-header p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Form Styles */
.login-form {
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    z-index: 2;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.input-group input:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.input-group label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    transition: all 0.3s ease;
    pointer-events: none;
    background: #fafafa;
    padding: 0 5px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8rem;
    color: #3498db;
    background: white;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #3498db;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #7f8c8d;
}

.checkbox input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #bdc3c7;
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox input:checked + .checkmark {
    background: #3498db;
    border-color: #3498db;
}

.checkbox input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.forgot-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

/* Login Footer */
.login-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.register-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Alert Styles */
.alert.error {
    background: #fee;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert.error p {
    margin: 5px 0;
}

/* Footer at bottom */
footer {
    margin-top: auto;
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsive Design */
@media screen and (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .forgot-link {
        align-self: flex-end;
    }
}
/* Register Page Specific Styles */
.password-strength {
    margin-bottom: 25px;
}

.strength-bar {
    width: 100%;
    height: 6px;
    background: #ecf0f1;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: #e74c3c;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.8rem;
    color: #7f8c8d;
    display: block;
    text-align: center;
}

/* Success Alert */
.alert.success {
    background: #eff8f0;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert.success p {
    margin: 0;
}

/* Form validation styles */
.input-group input:valid {
    border-color: #27ae60;
}

.input-group input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e74c3c;
}

/* Responsive adjustments for register form */
@media screen and (max-width: 480px) {
    .login-card {
        padding: 25px 20px;
    }
    
    .input-group {
        margin-bottom: 20px;
    }
}
/* Remove autofill styles */
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover, 
.input-group input:-webkit-autofill:focus, 
.input-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fafafa inset !important;
    -webkit-text-fill-color: #2c3e50 !important;
    border-color: #ecf0f1 !important;
}

.input-group input:focus:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    border-color: #3498db !important;
}

/* Alternative method using animation to override autofill */
@keyframes autofill {
    0%, 100% {
        background: #fafafa;
        color: #2c3e50;
    }
}

.input-group input:-webkit-autofill {
    animation-name: autofill;
    animation-fill-mode: both;
}

/* Force remove any browser autofill styling */
.input-group input {
    &:-webkit-autofill,
    &:-webkit-autofill:hover,
    &:-webkit-autofill:focus,
    &:-webkit-autofill:active {
        transition: background-color 5000s ease-in-out 0s;
        -webkit-text-fill-color: #2c3e50 !important;
    }
}

/* Ensure consistent border color */
.input-group input {
    border-color: #ecf0f1 !important;
}

.input-group input:focus {
    border-color: #3498db !important;
}   