/**
 * BWG CF Turnstile Admin Styles
 */

/* Header and Logo */
.bwg-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.bwg-logo {
    width: 75px;
    height: 75px;
    margin-right: 15px;
    background-image: url('bwg-logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Settings Sections */
.bwg-settings-section {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.bwg-settings-section h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Form Elements */
.form-checkbox-list {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 3px;
}

.form-checkbox-item {
    margin-bottom: 8px;
}

/* Code Snippet */
#turnstile-code-snippet {
    background: #f1f1f1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: monospace;
    white-space: pre-wrap;
    margin-bottom: 10px;
}

/* Footer */
.bwg-settings-footer {
    color: #555;
    font-size: 13px;
}