/* Elegant Subscribe Plugin Styles */
.es-subscription-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 25px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.es-form-group {
    margin-bottom: 15px;
}

.es-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.es-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    outline: none;
}

.es-submit-button {
    width: 100%;
    padding: 12px 20px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.es-submit-button:hover {
    background-color: #3a80d2;
}

.es-message-container {
    margin-top: 20px;
    padding: 12px 15px;
    border-radius: 4px;
    font-weight: 500;
}

.es-success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.es-error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

/* Admin Styles */
.status-active {
    color: #2e7d32;
    font-weight: 600;
}

.status-inactive {
    color: #c62828;
    font-weight: 600;
}

.es-export-section {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}