/**
 * Email Tab Styles
 * Styles for the email templates editor page
 */

/* Page intro */
.prebooking-email-intro {
    font-style: italic;
    margin-top: 6px;
    color: #666;
}

/* Email form */
.prebooking-email-form {
    margin-top: 20px;
}

/* Email sections */
.prebooking-email-section {
    margin-top: 40px;
}

.prebooking-email-section-title {
    margin-top: 40px;
    margin-bottom: 15px;
}

.prebooking-email-section-description {
    font-style: italic;
    margin-bottom: 5px;
    color: #666;
}

/* Email editor textarea */
.prebooking-email-editor {
    width: 100%;
    max-width: 800px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    line-height: 1.6;
}

.prebooking-email-editor:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

/* Submit section */
.prebooking-email-submit {
    margin-top: 20px;
}

/* Email files list */
.prebooking-email-files-title {
    margin-top: 60px;
    margin-bottom: 20px;
}

.prebooking-email-files-table {
    width: 100%;
    max-width: 900px;
    border-collapse: collapse;
}

.prebooking-email-files-table th,
.prebooking-email-files-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.prebooking-email-files-table th {
    background: #f9f9f9;
    font-weight: 600;
}

.prebooking-email-files-table tr:hover {
    background: #f5f5f5;
}

/* Status indicators */
.prebooking-email-status-ok {
    color: #46b450;
}

.prebooking-email-status-error {
    color: #dc3232;
}

/* Email logs section */
.prebooking-email-logs-title {
    margin-top: 40px;
    margin-bottom: 15px;
}

.prebooking-email-logs-form {
    margin-bottom: 15px;
}

/* Responsive */
@media screen and (max-width: 782px) {
    .prebooking-email-editor {
        max-width: 100%;
    }
    
    .prebooking-email-files-table {
        font-size: 13px;
    }
    
    .prebooking-email-files-table th,
    .prebooking-email-files-table td {
        padding: 8px;
    }
}
