/* Atomic Events Settings Page Styles */

/* Hide the main settings title */
.wrap > h2:first-of-type {
    display: none;
}

.atomic-events-admin-header {
    margin-bottom: 20px;
}

.atomic-events-admin-banner {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    padding: 20px;
    border-radius: 8px;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
}

.atomic-events-banner-title {
    margin: 0;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.atomic-events-outer {
    background: white;
    padding: 20px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    margin-top: 20px;
}

.atomic-events-support-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #6366f1;
    border-radius: 4px;
}

.atomic-events-support-section h3 {
    margin-top: 0;
    color: #6366f1;
    font-size: 18px;
}

.atomic-events-support-section ul {
    margin-left: 20px;
}

.atomic-events-support-section li {
    margin-bottom: 8px;
}

.atomic-events-support-section code {
    background: #2d3748;
    color: #e2e8f0;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    border: 1px solid #4a5568;
    display: inline-block;
    margin: 2px 0;
}

.settings-page-icon {
    margin-right: 8px;
    color: #6366f1;
}

/* Form styling */
.atomic-events-admin-form .form-table th {
    width: 200px;
    padding: 20px 10px 20px 0;
}

.atomic-events-admin-form .form-table td {
    padding: 15px 10px;
}

.atomic-events-admin-form input[type="number"],
.atomic-events-admin-form select {
    min-width: 200px;
}

/* Tab styling */
.nav-tab-wrapper {
    margin-bottom: 0;
}

.nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-tab .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 782px) {
    .atomic-events-admin-form .form-table th {
        width: 100%;
        display: block;
        padding: 10px 0 5px 0;
    }
    
    .atomic-events-admin-form .form-table td {
        display: block;
        padding: 0 0 15px 0;
    }
    
    .atomic-events-admin-form input[type="number"],
    .atomic-events-admin-form select {
        min-width: 100%;
    }
}
