/**
 * Lettermint Admin Styles
 */

.lettermint-tab-content {
    margin-top: 20px;
}

.lettermint-log-type {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.lettermint-log-type-info {
    background: #e1f5fe;
    color: #0277bd;
}

.lettermint-log-type-success {
    background: #e8f5e8;
    color: #2e7d32;
}

.lettermint-log-type-error {
    background: #ffebee;
    color: #c62828;
}

.lettermint-log-type-warning {
    background: #fff3e0;
    color: #ef6c00;
}

.lettermint-log-row.clickable {
    cursor: pointer;
}

.lettermint-log-row.clickable:hover {
    background-color: #f0f0f1;
}

.lettermint-log-details-icon {
    margin-left: 5px;
    font-size: 12px;
}

#lettermint-log-details-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.lettermint-log-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    max-height: 80%;
    overflow-y: auto;
    border-radius: 5px;
}

.lettermint-log-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.lettermint-log-modal-close:hover {
    color: black;
}

#lettermint-log-details-content pre {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 3px;
    overflow-x: auto;
    white-space: pre-wrap;
}