.cookiefy-admin-header {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.cookiefy-logo {
    margin-right: 20px;
    flex-shrink: 0;
}

.cookiefy-logo img {
    height: 40px;
    width: auto;
}

.cookiefy-info {
    flex: 1;
}

.cookiefy-info p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookiefy-help-section {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.cookiefy-help-section h2 {
    margin-top: 0;
    color: #1d2327;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}

.cookiefy-help-section h3 {
    color: #1d2327;
    margin-top: 25px;
}

.cookiefy-help-section ol {
    padding-left: 20px;
}

.cookiefy-help-section ol li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.cookiefy-status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.cookiefy-status-enabled {
    background-color: #46b450;
}

.cookiefy-status-disabled {
    background-color: #dc3232;
}

.cookiefy-config-preview {
    background: #f6f7f7;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 12px;
    margin-top: 8px;
    font-family: Consolas, Monaco, monospace;
    font-size: 12px;
    max-height: 200px;
    overflow-y: auto;
}

.cookiefy-theme-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.cookiefy-theme-option {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
    flex: 1;
    min-width: 150px;
}

.cookiefy-theme-option:hover {
    border-color: #2271b1;
}

.cookiefy-theme-option.selected {
    border-color: #2271b1;
    background-color: #f0f6fc;
}

.cookiefy-theme-option img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 8px;
}

.cookiefy-notice {
    padding: 12px;
    margin: 15px 0;
    border-left: 4px solid #00a0d2;
    background: #f0f8ff;
}

.cookiefy-notice.warning {
    border-left-color: #ffb900;
    background: #fff8e5;
}

.cookiefy-notice.error {
    border-left-color: #dc3232;
    background: #ffeaea;
}

@media (max-width: 782px) {
    .cookiefy-admin-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cookiefy-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookiefy-theme-preview {
        flex-direction: column;
    }
    
    .cookiefy-theme-option {
        min-width: auto;
    }
}
/* Admin-specific styles for Cookiefy settings page */
.cookiefy-mode-comparison table {
    border-collapse: collapse;
    width: 100%;
    margin: 10px 0;
}

.cookiefy-mode-comparison th,
.cookiefy-mode-comparison td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookiefy-mode-comparison th {
    background-color: #f9f9f9;
    font-weight: 600;
}

.cookiefy-mode-comparison tr:hover {
    background-color: #f5f5f5;
}

#cookiefy_custom_config {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    line-height: 1.4;
}

.cookiefy-help-section {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}