/* IDLA Membership Dashboard - Complete CSS */
.idla-register-link {
    position: relative;
}

.idla-register-link::after {
    position: absolute;
    content: "";
    background: #ccc;
    width: 25%;
    height: 1px;
    top: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.idla-sidebar-nav li a span {
    line-height: 22px;
}
.idla-admin-redirect-dashboard {
    padding-bottom: 80px !important;
    padding-top: 80px !important;
}

.idla-nav-badge {
    padding: 0px 5px !important;
}
.idla-stat-value {
    margin-top: 20px;
}
.idla-register-link p, .idla-login-link p {
    color: #666;
    margin-bottom: 0px;
}
.idla-form-header {
    border-bottom: .5px solid #cccccc47;
}

/* Reset and Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Dashboard Wrapper - Sidebar Layout */
.idla-dashboard-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: 100vh;
}

@media (max-width: 992px) {
    .idla-dashboard-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.idla-dashboard-sidebar {
    background: #0a2a66;
    color: white;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.idla-sidebar-header {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.idla-user-avatar {
    font-size: 60px;
    color: rgba(255,255,255,0.9);
}

.idla-user-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

.idla-user-info p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.idla-user-role {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Sidebar Navigation */
.idla-sidebar-nav {
    flex: 1;
}

.idla-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.idla-sidebar-nav li {
    margin: 0;
}

.idla-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    border-bottom: 1px solid #cccccc14;
}

.idla-sidebar-nav a:hover {
    background: rgb(255 255 255);
    color: #0a2d6b;
    /* border-left-color: rgba(255,255,255,0.3); */
}

.idla-sidebar-nav a.active {
    background: rgb(255 255 255);
    color: #0a2a66;
    border-left-color: #ffc107;
    border-width: 5px;
    border-right: 1px solid #0000001a;
}

.idla-sidebar-nav a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* Sidebar Footer */
.idla-sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.idla-logout-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.idla-logout-btn a:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Main Content Area */
.idla-dashboard-content {
    padding: 0;
    overflow-x: hidden;
    background: #fff;
    border-radius: 10px;
    margin-left: 10px;
}

/* Content Header */
.idla-content-header {
    background: white;
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.idla-content-header h1 {
    color: #0a2a66;
    font-size: 24px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-header-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.idla-current-date,
.idla-membership-id {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.idla-membership-id {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* Tab Content */
.idla-tab-content {
    padding: 0px 25px;
    min-height: calc(100vh - 120px);
}

/* Overview Tab */
.idla-overview-tab {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.idla-welcome-card {
    background: linear-gradient(135deg, #0a2a66 0%, #1a4a9c 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.idla-welcome-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: white;
}

.idla-welcome-card p {
    opacity: 0.9;
    font-size: 16px;
    margin: 0;
}

/* Quick Stats */
.idla-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.idla-stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: stretch;
    gap: 20px;
    transition: all 0.3s ease;
}

.idla-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.idla-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.idla-stat-details h3 {
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	line-height:22px;
}

.idla-stat-value {
    color: #0a2a66;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.idla-stat-subtext {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.idla-documents-page h2 {
    color: #0a2a66;
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Status Badges */
.idla-status-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.idla-status-pending { background: #fff3cd; color: #856404;
    text-align: center !important;}
.idla-status-approved { background: #d4edda; color: #155724; }
.idla-status-active { background: #d1ecf1; color: #0c5460; }
.idla-status-rejected { background: #f8d7da; color: #721c24; }
.idla-status-completed { background: #d4edda; color: #155724; }

.idla-expiry-active { color: #28a745; }
.idla-expiry-warning { color: #ffc107; }
.idla-expiry-danger { color: #dc3545; }
.idla-expiry-expired { color: #dc3545; font-weight: bold; }

/* Quick Actions */
.idla-quick-actions {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.idla-quick-actions h3 {
    color: #0a2a66;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.idla-action-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px 15px;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.idla-action-btn:hover {
    background: #0a2a66;
    color: white;
    border-color: #0a2a66;
    transform: translateY(-5px);
}

.idla-action-icon {
    width: 50px;
    height: 50px;
    background: #0a2a66;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.idla-action-btn:hover .idla-action-icon {
    background: white;
    color: #0a2a66;
}

.idla-action-btn span {
    font-size: 14px;
    font-weight: 600;
}

/* Recent Activity */
.idla-recent-activity {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.idla-recent-activity h3 {
    color: #0a2a66;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.idla-activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.idla-activity-icon {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a2a66;
    font-size: 16px;
    flex-shrink: 0;
}

.idla-activity-content {
    flex: 1;
}

.idla-activity-content h4 {
    font-size: 15px;
    color: #0a2a66;
    margin-bottom: 5px;
}

.idla-activity-content p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

/* Cards */
.idla-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 25px;
}

.idla-card h3 {
    color: #0a2a66;
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Info Tables */
.idla-info-table {
    margin-bottom: 25px;
}

.idla-info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 10px;
}

.idla-info-row:last-child {
    border-bottom: none;
}

.idla-info-label {
    flex: 0 0 200px;
    font-weight: 600;
    color: #6c757d;
    font-size: 15px;
}

.idla-info-value {
    flex: 1;
    color: #0a2a66;
    font-size: 15px;
    min-width: 200px;
}

.idla-text-muted {
    color: #6c757d !important;
    font-style: italic;
}

/* Card Actions */
.idla-card-actions {
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 15px;
}

/* Events Tab */
.idla-events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.idla-event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.idla-event-date {
    background: #0a2a66;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.idla-event-day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.idla-event-month {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.idla-event-details {
    flex: 1;
    min-width: 250px;
}

.idla-event-details h4 {
    margin-bottom: 10px;
}

.idla-event-details h4 a {
    color: #0a2a66;
    text-decoration: none;
}

.idla-event-details h4 a:hover {
    color: #1a4a9c;
}

.idla-event-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.idla-event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    font-size: 14px;
}

.idla-event-actions {
    display: flex;
    gap: 10px;
}

/* Card Footer */
.idla-card-footer {
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}

/* Login Page */
.idla-login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    padding: 80px 20px;
/*     background: #f8f9fa; */
}

.idla-login-container-centered {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #fff;
    box-shadow: 0px 0px 6px 0px #000;
    border-radius: 10px;
}


.idla-dashboard-wrapper {
    padding: 100px 20px;
}




.idla-login-form-centered {
    background: white;
    border-radius: 20px;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
    width: 100%;
}

.idla-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.idla-form-header h2 {
    color: #0066cc;
    margin-bottom: 12px;
    font-size: 32px;
}

.idla-form-header p {
    color: #666;
    font-size: 16px;
}

.idla-form-group {
    margin-bottom: 12px;
}

.idla-form-group label {
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
	font-size:18px;
}

.idla-form-group label i {
    color: #0066cc;
    margin-right: 8px;
    width: 20px;
}

.idla-form-group input,
.idla-form-group select,
.idla-form-group textarea {
    padding: 20px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
    margin-bottom:10px;
}

.idla-form-group input:focus,
.idla-form-group select:focus,
.idla-form-group textarea:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.idla-password-field {
    position: relative;
}

.idla-password-toggle {
    position: absolute;
    right: 10px;
    top: 42%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.idla-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.idla-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.idla-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.idla-checkbox input {
    margin-right: 8px;
}

.idla-forgot-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.idla-forgot-link:hover {
    text-decoration: underline;
}

.idla-btn {
    padding: 12px 30px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.idla-btn:hover {
    background: #0052a3;
}

.idla-btn-submit {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
}

.idla-btn-secondary {
    background: #6c757d;
}

.idla-btn-secondary:hover {
    background: #5a6268;
}

.idla-terms {
    margin: 25px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.idla-terms .idla-checkbox {
    margin: 0;
}

.idla-register-link,
.idla-login-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
}

.idla-register-link p,
.idla-login-link p {
    color: #666;
}

.idla-register-link a,
.idla-login-link a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.idla-register-link a:hover,
.idla-login-link a:hover {
    text-decoration: underline;
}


.idla-alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.idla-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.idla-alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.idla-already-logged-in {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 40px auto;
}

.idla-already-logged-in h3 {
    color: #28a745;
    margin-bottom: 15px;
}

.idla-login-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

/* Responsive */
@media (max-width: 768px) {
    .idla-benefits-list {
        grid-template-columns: 1fr;
    }
    
    .idla-form-row {
        grid-template-columns: 1fr;
    }
    
    .idla-login-form-centered {
        padding: 25px;
    }
    
    .idla-form-options {
        align-items: flex-start;
        gap: 15px;
    }
    
    .idla-login-actions {
        flex-direction: column;
    }
    
    .idla-btn {
        width: 100%;
    }
}

/* Form Options */
.idla-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.idla-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.idla-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.idla-forgot-link {
    color: #0a2a66;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.idla-forgot-link:hover {
    text-decoration: underline;
}

/* Terms */
.idla-terms {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Links */
.idla-register-link,
.idla-login-link {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
}

.idla-register-link a,
.idla-login-link a {
    color: #0a2a66;
    font-weight: 600;
    text-decoration: none;
}

.idla-register-link a:hover,
.idla-login-link a:hover {
    text-decoration: underline;
}

/* Sidebar */
.idla-login-sidebar {
    background: #0a2a66;
    color: white;
    padding: 50px 30px;
    display: flex;
    align-items: center;
}

.idla-sidebar-content {
    max-width: 300px;
}

.idla-sidebar-content h3 {
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-sidebar-content ul {
    list-style: none;
    margin-bottom: 40px;
}

.idla-sidebar-content li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.idla-sidebar-content li i {
    color: #4cd964;
}

.idla-contact-info {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.idla-contact-info h4 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

/* Alerts */
.idla-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
}

.idla-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.idla-alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.idla-alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Buttons */
.idla-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: #0a2a66;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #0a2a66;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.idla-btn:hover {
    background: #1a4a9c;
    border-color: #1a4a9c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(10, 42, 102, 0.2);
}

.idla-btn-secondary {
    background: white;
    color: #0a2a66;
}

.idla-btn-secondary:hover {
    background: #f8f9fa;
    color: #fff;
}

.idla-btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

/* Form Actions */
.idla-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Back Link */
.idla-back-link {
    margin-bottom: 30px;
}

.idla-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0a2a66;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.idla-back-link a:hover {
    background: #e9ecef;
    color: #1a4a9c;
}

/* Empty State */
.idla-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.idla-empty-state i {
    font-size: 80px;
    color: #dee2e6;
    margin-bottom: 25px;
}

.idla-empty-state h3 {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 24px;
}

/* Renewal Page Specific Fixes */

/* Renewal Container Layout Fix */
.idla-renewal-container {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

@media (max-width: 992px) {
    .idla-renewal-container {
        grid-template-columns: 1fr;
    }
}

/* Current Membership Card Fix */
.idla-current-membership {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: sticky;
    top: 20px;
}

.idla-current-membership h3 {
    color: #0a2a66;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-membership-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.idla-membership-info p {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

.idla-membership-info p:last-child {
    border-bottom: none;
}

.idla-membership-info strong {
    color: #6c757d;
    font-weight: 600;
    min-width: 120px;
}

/* Renewal Options Container Fix */
.idla-renewal-options {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.idla-renewal-options h3 {
    color: #0a2a66;
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Renewal Plans Grid Fix */
.idla-renewal-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .idla-renewal-plans {
        grid-template-columns: 1fr;
    }
}

/* Individual Plan Card Fix */
.idla-renewal-plan {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.idla-renewal-plan:hover {
    border-color: #0a2a66;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Popular Plan Highlight */
#popular-plan {
    border-color: #ffc107;
    transform: scale(1.02);
}

#popular-plan:hover {
    border-color: #ffc107;
    transform: scale(1.02) translateY(-5px);
}

.idla-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #856404;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.idla-renewal-plan h4 {
    color: #0a2a66;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.idla-plan-price {
    font-size: 32px;
    font-weight: 700;
    color: #0a2a66;
    margin: 15px 0;
}

.idla-plan-price:before {
    font-size: 24px;
    vertical-align: top;
}

.idla-plan-save {
    background: #28a745;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

/* Plan Selection Label Fix */
.idla-renewal-plan label {
    display: block;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: auto;
    font-weight: 500;
    color: #495057;
}

.idla-renewal-plan label:hover {
    background: #e9ecef;
    border-color: #0a2a66;
}

.idla-renewal-plan input[type="radio"] {
    margin-right: 10px;
    transform: translateY(1px);
}

/* Payment Instructions Section Fix */
.idla-payment-instructions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid #dee2e6;
}

.idla-payment-instructions h4 {
    color: #0a2a66;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-payment-instructions > p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

/* Payment Methods Grid Fix */
.idla-payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

@media (max-width: 768px) {
    .idla-payment-methods {
        grid-template-columns: 1fr;
    }
}

/* Individual Payment Method Card Fix */
.idla-payment-method {
    background: white;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.idla-payment-method h5 {
    color: #0a2a66;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* UPI ID Box Fix */
.idla-upi-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    flex-wrap: wrap;
    gap: 10px;
}

.idla-upi-id strong {
    font-size: 18px;
    color: #0a2a66;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    flex: 1;
    min-width: 150px;
}

.idla-copy-btn {
    background: #0a2a66;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.idla-copy-btn:hover {
    background: #1a4a9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 42, 102, 0.2);
}

/* Bank Details Fix */
.idla-payment-method pre {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    border: 1px solid #dee2e6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Payment Note Box Fix */
.idla-payment-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.idla-payment-note p {
    margin-bottom: 10px;
    color: #856404;
    font-size: 15px;
    line-height: 1.5;
}

.idla-payment-note p:last-child {
    margin-bottom: 0;
}

.idla-payment-note strong {
    color: #856404;
}

/* Form Actions Button Fix */
.idla-form-actions {
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    margin-top: 25px;
    text-align: center;
}

.idla-form-actions .idla-btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Back Link Fix */
.idla-back-link {
    margin-bottom: 30px;
}

.idla-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0a2a66;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.idla-back-link a:hover {
    background: #e9ecef;
    color: #1a4a9c;
    transform: translateX(-5px);
}

/* Page Heading Fix */
.idla-renewal-page h2 {
    color: #0a2a66;
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Radio Button Custom Styling */
.idla-renewal-plan input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #6c757d;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

.idla-renewal-plan input[type="radio"]:checked {
    border-color: #0a2a66;
    background: #0a2a66;
}

.idla-renewal-plan input[type="radio"]:checked:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Success Message Styling (if shown) */
.idla-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.idla-alert-success h4 {
    color: #155724;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-alert-success p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.idla-alert-success p:last-child {
    margin-bottom: 0;
}

/* Responsive Fixes for Small Screens */
@media (max-width: 480px) {
    .idla-renewal-page {
        padding: 15px;
    }
    
    .idla-renewal-container {
        gap: 20px;
    }
    
    .idla-current-membership,
    .idla-renewal-options {
        padding: 20px;
    }
    
    .idla-renewal-plan {
        padding: 20px;
    }
    
    .idla-plan-price {
        font-size: 28px;
    }
    
    .idla-upi-id {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .idla-copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .idla-form-actions .idla-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for Plan Selection */
@keyframes planPulse {
    0% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(10, 42, 102, 0.2);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
}

.idla-renewal-plan input[type="radio"]:checked ~ span {
    font-weight: 600;
    color: #0a2a66;
}

.idla-renewal-plan:has(input[type="radio"]:checked) {
    animation: planPulse 2s ease-in-out;
    border-color: #0a2a66;
}

/* Bank Details Placeholder Styling */
.idla-payment-method pre:contains("Bank details will be displayed here") {
    color: #6c757d;
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="%23dee2e6" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="5" width="20" height="14" rx="2"/><line x1="2" y1="10" x2="22" y2="10"/></svg>') center no-repeat;
    background-size: 50px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure consistent spacing */
.idla-renewal-page > * {
    margin-bottom: 25px;
}

.idla-renewal-page > *:last-child {
    margin-bottom: 0;
}

/* Loading state for button */
.idla-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.idla-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Price formatting fix */
.idla-plan-price {
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Mobile touch improvements */
@media (hover: none) {
    .idla-renewal-plan:hover {
        transform: none;
    }
    
    .idla-renewal-plan:active {
        transform: scale(0.98);
    }
    
    .idla-btn:active {
        transform: scale(0.98);
    }
}

/* Print styles for renewal page */
@media print {
    .idla-back-link,
    .idla-copy-btn,
    .idla-form-actions {
        display: none;
    }
    
    .idla-renewal-container {
        display: block;
    }
    
    .idla-current-membership,
    .idla-renewal-options {
        box-shadow: none;
        border: 1px solid #000;
        page-break-inside: avoid;
    }
}

/* Payment Instructions */
.idla-payment-instructions {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.idla-payment-instructions h4 {
    color: #0a2a66;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 25px 0;
}

@media (max-width: 768px) {
    .idla-payment-methods {
        grid-template-columns: 1fr;
    }
}

.idla-payment-method {
    background: white;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.idla-payment-method h5 {
    color: #0a2a66;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-upi-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
}

.idla-upi-id strong {
    font-size: 18px;
    color: #0a2a66;
}

.idla-copy-btn {
    background: #0a2a66;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.idla-copy-btn:hover {
    background: #1a4a9c;
}

.idla-payment-method pre {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    border: 1px solid #dee2e6;
}

.idla-payment-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.idla-payment-note p {
    margin-bottom: 10px;
    color: #856404;
    font-size: 15px;
}

.idla-payment-note p:last-child {
    margin-bottom: 0;
}

/* Documents Page */
.idla-documents-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

@media (max-width: 576px) {
    .idla-documents-container {
        grid-template-columns: 1fr;
    }
}

.idla-document-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    flex-direction: column;
}

.idla-document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #0a2a66;
}

.idla-document-icon {
    width: 60px;
    height: 60px;
    background: #dc3545;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.idla-document-content {
    flex: 1;
}

.idla-document-content h3 {
    color: #0a2a66;
    font-size: 18px;
    margin-bottom: 8px;
}

.idla-document-type,
.idla-document-date {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.idla-document-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Payments Page */
.idla-payments-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.idla-summary-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.idla-summary-card h3 {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.idla-summary-amount {
    color: #0a2a66;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.idla-payments-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.idla-payments-table table {
    width: 100%;
    border-collapse: collapse;
}

.idla-payments-table th {
    background: #f8f9fa;
    color: #0a2a66;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
}

.idla-payments-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #495057;
}

.idla-payments-table tr:last-child td {
    border-bottom: none;
}

.idla-payments-table tr:hover {
    background: #f8f9fa;
}

/* Login Required */
.idla-login-required {
    text-align: center;
    padding: 100px 30px;
}

.idla-login-prompt i {
    font-size: 80px;
    color: #0a2a66;
    margin-bottom: 25px;
}

.idla-login-prompt h3 {
    color: #0a2a66;
    font-size: 32px;
    margin-bottom: 15px;
}

.idla-login-prompt p {
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 30px;
}

.idla-login-prompt {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 1px solid #d1d8e6;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

.idla-login-prompt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.idla-login-prompt i.fa-lock {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
    display: block;
}

.idla-login-prompt h3 {
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    font-size: 1.75rem;
    font-weight: 600;
}

.idla-login-prompt p {
    color: #5d6d7e;
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.idla-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.idla-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.idla-btn:active {
    transform: translateY(0);
}

.idla-btn::after {
    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;
    z-index: -1;
}

.idla-btn:hover::after {
    left: 100%;
}

/* Optional animation for the lock icon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.idla-login-prompt i.fa-lock {
    animation: pulse 2s infinite;
}

/* Responsive design */
@media (max-width: 480px) {
    .idla-login-prompt {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .idla-login-prompt i.fa-lock {
        font-size: 2.5rem;
    }
    
    .idla-login-prompt h3 {
        font-size: 1.5rem;
    }
    
    .idla-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Already Logged In */
.idla-already-logged-in {
    text-align: center;
    padding: 60px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 50px auto;
}

.idla-already-logged-in h3 {
    color: #28a745;
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.idla-already-logged-in p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 16px;
}

.idla-login-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Edit Profile */
.idla-edit-profile {
    max-width: 800px;
    margin: 0 auto;
}

.idla-edit-profile h2 {
    color: #0a2a66;
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-profile-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.idla-form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.idla-form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.idla-form-section h3 {
    color: #0a2a66;
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Dashboard */
    .idla-dashboard-wrapper {
        display: flex;
        flex-direction: column;
    }
	.idla-btn {
    gap: 10px;
    font-size: 12px;
}
	.idla-register-link p {
    font-size: 12px;
}
    
    .idla-dashboard-sidebar {
        min-height: auto;
        position: static;
    }
    
    .idla-sidebar-nav ul {
        display: flex;
        overflow-x: auto;
        padding: 10px;
    }
    
    .idla-sidebar-nav li {
        flex-shrink: 0;
    }
    
    .idla-sidebar-nav a {
        padding: 10px 15px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .idla-sidebar-nav a.active {
        border-left: none;
        border-bottom-color: #ffc107;
    }
    
    .idla-sidebar-footer {
        position: static;
        padding: 15px;
    }
    
    .idla-content-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .idla-header-info {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Quick Stats */
    .idla-quick-stats {
        grid-template-columns: 1fr;
    }
    
    /* Quick Actions */
    .idla-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Events */
    .idla-event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .idla-event-actions {
        width: 100%;
    }
    
    .idla-event-actions .idla-btn {
        flex: 1;
    }
    
    /* Login Page */
    .idla-login-sidebar {
        display: none;
    }
    
    /* Forms */
    .idla-form-actions {
        flex-direction: column;
    }
    
    .idla-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    /* Quick Actions */
    .idla-actions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Events Meta */
    .idla-event-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Payment Methods */
    .idla-upi-id {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Documents */
    .idla-document-card {
        flex-direction: column;
        text-align: center;
    }
    
    .idla-document-actions {
        flex-direction: row;
        width: 100%;
    }
    
    .idla-document-actions .idla-btn {
        flex: 1;
    }
}


/* ===== ADMIN DASHBOARD REDESIGN ===== */

.idla-admin-dashboard {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Admin Welcome Section */
.idla-admin-welcome {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 16px;
    padding: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.idla-admin-welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.idla-admin-welcome h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.idla-admin-welcome h2 i {
    color: #4fc3f7;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
    font-size: 24px;
}

.idla-admin-welcome p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.idla-admin-welcome p:first-of-type {
    font-size: 18px;
    font-weight: 500;
    color: #bbdefb;
}

/* Admin Actions Grid */
.idla-admin-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* Button Styles */
.idla-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.idla-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.idla-btn i {
    font-size: 18px;
}

/* Secondary Button */
.idla-btn-secondary {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.idla-btn-secondary:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.4);
}

/* Optional: Add Stats Cards Below */
.idla-admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

.stat-icon.users { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
.stat-icon.documents { background: linear-gradient(135deg, #FF9800, #EF6C00); }
.stat-icon.settings { background: linear-gradient(135deg, #9C27B0, #6A1B9A); }
.stat-icon.activity { background: linear-gradient(135deg, #2196F3, #1565C0); }

.stat-content h3 {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.stat-content p {
    margin: 5px 0 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}



/* Responsive Design */
@media (max-width: 768px) {
    .idla-admin-welcome {
        padding: 30px 20px;
    }
    
    .idla-admin-actions {
        grid-template-columns: 1fr;
    }
	.idla-form-header p {
    margin-bottom: 20px;
}
	.idla-register-link, .idla-login-link {
    margin-top: 15px;
    padding-top: 15px;
}
    
    .idla-btn {
        padding: 12px 20px;
    }
.idla-login-page {
    padding: 25px 12px;
}
    
    .idla-admin-welcome h2 {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .idla-admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
	.idla-form-header h2 {
    font-size: 24px;
		margin-bottom:5px;
}
	.idla-form-header p {
    font-size: 11px;
}
	.idla-form-header {
    margin-bottom: 20px;
}
	.idla-form-group label {
    font-size: 12px;
}
	.idla-form-group input, .idla-form-group select, .idla-form-group textarea {
    padding: 12px 10px;
    font-size: 11px;
    margin-bottom: 10px;
}
	.idla-form-options {
    margin: 0px 0;
}
	.idla-checkbox {
    font-size: 11px;
}
	.idla-forgot-link {
    font-size: 11px;
}
}

@media (max-width: 480px) {
    .idla-admin-stats {
        grid-template-columns: 1fr;
    }
    
    .idla-admin-welcome h2 i {
        padding: 10px;
        font-size: 20px;
    }
}

/* Animation for buttons */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.idla-btn {
    animation: fadeInUp 0.5s ease forwards;
}

.idla-btn:nth-child(2) { animation-delay: 0.1s; }
.idla-btn:nth-child(3) { animation-delay: 0.2s; }
.idla-btn:nth-child(4) { animation-delay: 0.3s; }
.idla-admin-redirect-dashboard {
    background: #f3f8ff;
    padding: 45px !important;
    border-radius: 20px;
    margin: 50px 0px;
    border-top: 3px solid #1c80dc;
}
.idla-admin-redirect-dashboard {
    background: #f3f8ff;
    padding: 45px !important;
    border-radius: 20px;
    margin: 50px 0px;
    border-top: 3px solid #1c80dc;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}
.profile_ico  .elementor-icon-wrapper {
    display: flex !important;
    align-items:center;
}


/* IDLA Membership Form Styles */
.idla-form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0a2a66;
}

.idla-form-section h3 {
    color: #0a2a66;
    margin-bottom: 15px;
    font-size: 18px;
}

.idla-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.idla-radio-label {
    display: flex !IMPORTANT;
    align-items: center;
    padding: 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.idla-radio-label:hover {
    border-color: #0a2a66;
    background: #f0f7ff;
}

.idla-radio-label input[type="radio"] {
    margin-right: 10px;
}

.idla-radio-text {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.idla-price {
    font-weight: bold;
    color: #28a745;
    background: #e8f5e9;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.idla-price-summary {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border: 1px solid #28a745;
}

.idla-payment-instructions {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #0a2a66;
}

.idla-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.idla-payment-method {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.idla-upi-id {
    background: #fff3cd;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.idla-copy-btn {
    background: #0a2a66;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.idla-payment-note {
    color: #dc3545;
    font-weight: bold;
    margin-top: 10px;
}

.idla-form-note {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.idla-form-subtitle {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* Form validation */
input:invalid, textarea:invalid {
    border-color: #dc3545;
}

input:valid, textarea:valid {
    border-color: #28a745;
}

/* File upload styling */
input[type="file"] {
    padding: 8px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    width: 100%;
    background: white;
}

input[type="file"]:hover {
    border-color: #0a2a66;
}

/* Terms and conditions */
.idla-terms {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.idla-terms .idla-checkbox {
    margin-bottom: 10px;
    display: block;
}

/* Main Two Column Layout */
.idla-main-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .idla-main-form-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Left Column */
.idla-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Right Column */
.idla-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Submit Button Row */
.idla-submit-row {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.idla-submit-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.idla-btn-large {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
}

/* Form Sections */
.idla-form-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.idla-form-section h3 {
    color: #0a2a66;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0a2a66;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Rows and Columns */
.idla-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.idla-form-col {
    display: flex;
    flex-direction: column;
}

/* Radio Options */
.idla-radio-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.idla-radio-label {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.idla-radio-label:hover {
    border-color: #0a2a66;
    background: #f0f7ff;
}

.idla-radio-text {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.idla-price {
    font-weight: bold;
    color: #28a745;
    background: #e8f5e9;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

/* Price Summary */
.idla-price-summary {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #28a745;
    text-align: center;
}

.idla-price-summary h4 {
    margin: 0;
    color: #28a745;
}

/* Documents List */
.idla-documents-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.idla-document-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.idla-document-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.idla-document-header h4 {
    margin: 0;
    color: #333;
    font-size: 15px;
}

.idla-document-req {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.idla-document-opt {
    background: #6c757d;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.idla-document-sub {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

/* File Input Styling */
.idla-form-section input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.idla-form-section input[type="file"]:hover {
    border-color: #0a2a66;
}

.idla-file-info {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    color: #666;
    font-size: 12px;
}

.idla-file-info i {
    color: #0a2a66;
}

/* Terms Box */
.idla-terms-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.idla-checkbox-term {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.idla-checkbox-term:last-child {
    border-bottom: none;
}

.idla-checkbox-term input[type="checkbox"] {
    margin-top: 3px;
}

.idla-checkbox-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.idla-term-title {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.idla-term-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

/* Payment Info */
.idla-payment-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.idla-payment-method {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.idla-payment-method h4 {
    color: #0a2a66;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idla-upi-box {
    background: #fff3cd;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.idla-upi-label {
    font-weight: 600;
    color: #856404;
    margin-bottom: 5px;
    font-size: 14px;
}

.idla-upi-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.idla-upi-value strong {
    font-size: 16px;
    color: #333;
}

.idla-copy-btn {
    background: #0a2a66;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.idla-bank-box {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.5;
    max-height: 200px;
    overflow-y: auto;
}

.idla-payment-important {
    background: #f8d7da;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
}

.idla-payment-important h5 {
    color: #721c24;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.idla-payment-important p {
    color: #721c24;
    font-size: 14px;
    margin: 0;
}

/* Form Note */
.idla-form-note {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Login Link */
.idla-login-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}