/**
 * Easy Syntax Highlighter Modal Styles
 */

.esh-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
}

.esh-modal-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 600px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 100001;
}

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

.esh-modal-header h2 {
    margin: 0;
    font-size: 18px;
}

.esh-modal-close {
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.esh-modal-body {
    padding: 20px;
}

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

.esh-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.esh-form-group select,
.esh-form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.esh-form-group textarea {
    min-height: 200px;
    font-family: monospace;
}

.esh-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    text-align: right;
}
