/* Easy Syntax Highlighter Admin Styles */

/* Settings Header */
.esh-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #c3c4c7;
}

.esh-settings-header h1 {
    margin: 0;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.3;
}

.esh-settings-links {
    display: flex;
    gap: 10px;
}

.esh-settings-links .button {
    margin: 0;
}

.esh-theme-group h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.esh-theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.esh-theme-preview {
    border: 3px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #f0f0f1;
}

.esh-theme-preview:hover {
    border-color: #999;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.esh-theme-preview.selected {
    border-color: #007cba;
    box-shadow: 0 0 0 3px #007cba;
}

.esh-theme-header {
    padding: 12px 15px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.esh-theme-header strong {
    font-size: 14px;
}

.esh-theme-preview-code pre {
    margin: 0;
    padding: 15px;
    font-size: 12px;
    line-height: 1.4;
    max-height: 100px;
    overflow: hidden;
}

.esh-theme-preview-code code {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.form-table th {
    width: 200px;
}

