/* Education for Future Plugin Styles */

.eff-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.eff-form-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 20px 0;
}

.eff-form-wrapper h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.eff-tickets-remaining {
    text-align: center;
    color: #e67e22;
    font-weight: 600;
    font-size: 1.2em;
    margin: 10px 0 20px 0;
    padding: 10px;
    background-color: #fdf2e9;
    border: 2px solid #e67e22;
    border-radius: 6px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.eff-sold-out {
    text-align: center;
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.3em;
    margin: 20px 0;
    padding: 15px;
    background-color: #fdf2f2;
    border: 2px solid #e74c3c;
    border-radius: 6px;
}

.eff-form-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.eff-form {
    max-width: 500px;
    margin: 0 auto;
}

.eff-field-group {
    margin-bottom: 25px;
}

.eff-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.required {
    color: #e74c3c;
}

.eff-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.eff-input:focus {
    outline: none;
    border-color: #3498db;
}

.eff-payment-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.eff-payment-option {
    flex: 1;
    min-width: 200px;
}

.eff-payment-option input[type="radio"] {
    display: none;
}

.eff-payment-label {
    display: block;
    padding: 20px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.eff-payment-label:hover {
    border-color: #3498db;
    background-color: #f8f9fa;
}

.eff-payment-option input[type="radio"]:checked + .eff-payment-label {
    border-color: #3498db;
    background-color: #e3f2fd;
}

.eff-amount {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.eff-payment-label .eff-description {
    font-size: 0.9em;
    color: #7f8c8d;
    margin: 0;
}

.eff-submit-btn {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.eff-submit-btn:hover {
    background: #2980b9;
}

.eff-submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.eff-loading {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

.eff-error {
    color: #e74c3c;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}

.eff-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

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

.eff-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

/* Overview Page Styles */
.eff-overview-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 20px 0;
}

.eff-overview-wrapper h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.eff-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.eff-stat {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0 10px;
}

.eff-stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #3498db;
}

.eff-stat-label {
    display: block;
    color: #7f8c8d;
    font-size: 0.9em;
    margin-top: 5px;
}

.eff-filters {
    margin-bottom: 30px;
    text-align: center;
}

.eff-filters form {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.eff-filters select {
    padding: 8px 12px;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 14px;
}

.eff-filters button {
    padding: 8px 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.eff-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.eff-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.eff-table th,
.eff-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.eff-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

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

.eff-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.eff-status-pending {
    background: #fff3cd;
    color: #856404;
}

.eff-status-completed {
    background: #d4edda;
    color: #155724;
}

.eff-status-denied {
    background: #f8d7da;
    color: #721c24;
}

.eff-status-refunded {
    background: #d1ecf1;
    color: #0c5460;
}

.eff-pagination {
    text-align: center;
    margin-bottom: 30px;
}

.eff-pagination a,
.eff-pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    text-decoration: none;
    color: #3498db;
}

.eff-pagination .eff-current {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.eff-pagination a:hover {
    background: #f8f9fa;
}

.eff-back-link {
    text-align: center;
    margin-top: 30px;
}

.eff-back-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.eff-back-link a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .eff-container {
        padding: 10px;
    }
    
    .eff-form-wrapper {
        padding: 20px;
    }
    
    .eff-form-wrapper h1 {
        font-size: 2em;
    }
    
    .eff-payment-options {
        flex-direction: column;
    }
    
    .eff-payment-option {
        min-width: auto;
    }
    
    .eff-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .eff-stat {
        margin: 5px 0;
        width: 200px;
    }
    
    .eff-filters form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .eff-table {
        font-size: 0.9em;
    }
    
    .eff-table th,
    .eff-table td {
        padding: 8px;
    }
}

/* Loading Animation */
.eff-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: eff-spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes eff-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success and Error Page Styles */
.eff-success-icon { 
    font-size: 4em; 
    color: #27ae60; 
    text-align: center; 
    margin-bottom: 20px; 
}

.eff-success-message { 
    text-align: center; 
    font-size: 1.2em; 
    color: #27ae60; 
    margin-bottom: 30px; 
}

.eff-error-icon { 
    font-size: 4em; 
    color: #e74c3c; 
    text-align: center; 
    margin-bottom: 20px; 
}

.eff-error-message { 
    text-align: center; 
    font-size: 1.2em; 
    color: #e74c3c; 
    margin-bottom: 30px; 
}

.eff-registration-details, 
.eff-next-steps { 
    background: #f8f9fa; 
    padding: 20px; 
    border-radius: 8px; 
    margin: 20px 0; 
}

.eff-actions { 
    text-align: center; 
    margin-top: 30px; 
}

.eff-btn { 
    display: inline-block; 
    padding: 12px 24px; 
    margin: 0 10px; 
    text-decoration: none; 
    border-radius: 6px; 
    font-weight: 600; 
    transition: background-color 0.3s ease;
}

.eff-btn-primary { 
    background: #3498db; 
    color: white; 
}

.eff-btn-primary:hover { 
    background: #2980b9; 
}

.eff-btn-secondary { 
    background: #95a5a6; 
    color: white; 
}

.eff-btn-secondary:hover { 
    background: #7f8c8d; 
}
