/* MailMoo Admin Styles */

/* Form table styles */
.form-table th {
    width: 200px;
}

/* Email log status styles */
.status-success {
    color: #00a32a;
    font-weight: bold;
}

.status-error {
    color: #d63638;
    font-weight: bold;
}

/* Modal styles */
.mailmoo-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.mailmoo-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 4px;
}

.mailmoo-modal-header {
    padding: 20px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mailmoo-modal-header h2 {
    margin: 0;
}

.mailmoo-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.mailmoo-close:hover {
    color: black;
}

.mailmoo-modal-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.log-detail {
    margin-bottom: 15px;
}

.log-detail label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.log-detail-content {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    white-space: pre-wrap;
    word-wrap: break-word;
}