/**
 * FeedHub Admin Styles
 *
 * @package FeedHub
 */

/* Settings page wrapper */
.feedhub-settings {
    max-width: 800px;
}

/* Section styling */
.feedhub-settings h2 {
    padding-top: 20px;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}

.feedhub-settings h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

/* Form table improvements */
.feedhub-settings .form-table th {
    width: 200px;
    padding-left: 0;
}

.feedhub-settings .form-table td {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Color picker container */
.feedhub-settings .wp-picker-container {
    display: inline-block;
}

/* Labels toggle (collapsible section) */
.feedhub-labels-toggle {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 20px;
    cursor: pointer;
}

.feedhub-labels-toggle summary {
    font-weight: 600;
    color: #1d2327;
    cursor: pointer;
    user-select: none;
}

.feedhub-labels-toggle summary:hover {
    color: #2271b1;
}

.feedhub-labels-toggle[open] {
    background: #fff;
}

.feedhub-labels-content {
    margin-top: 15px;
}

/* Label fields styling */
.feedhub-label-field {
    width: 100%;
    max-width: 400px;
}

/* Shortcode info box */
.feedhub-shortcode-info {
    background: #f0f6fc;
    border: 1px solid #c3d9ed;
    border-left: 4px solid #2271b1;
    border-radius: 4px;
    padding: 15px 20px;
    margin-top: 30px;
}

.feedhub-shortcode-info h2 {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    font-size: 1.1em;
}

.feedhub-shortcode-info code {
    display: inline-block;
    background: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin: 5px 0 10px;
}

/* Position selector - show/hide based on widget type */
.feedhub-settings tr[data-depends-on="popup"] {
    transition: opacity 0.2s ease;
}

.feedhub-settings.widget-type-inline tr[data-depends-on="popup"] {
    opacity: 0.5;
    pointer-events: none;
}

/* Description text */
.feedhub-settings .description {
    color: #646970;
    font-style: italic;
    margin-top: 5px;
}

/* Notice styling */
.feedhub-settings .notice {
    margin: 15px 0;
}

/* Required field indicator */
.feedhub-settings input[required] {
    border-left: 3px solid #2271b1;
}

/* Button text visibility toggle for password field */
.feedhub-settings .password-toggle {
    margin-left: 10px;
    cursor: pointer;
    color: #2271b1;
    font-size: 12px;
}

.feedhub-settings .password-toggle:hover {
    text-decoration: underline;
}
