/* ═══════════════════════════════════════════════════════════════════════════════
   24. AUTO-TAG PLUGIN
   Sección de configuración del plugin de etiquetado automático
   ═══════════════════════════════════════════════════════════════════════════════ */

.auto-tag-section {
    margin-top: 20px;
    border: 1px solid #313d45;
    border-radius: 8px;
    overflow: hidden;
    background: #0d1418;
}

.auto-tag-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #1a2730;
    cursor: pointer;
    transition: background 0.2s;
}

.auto-tag-header:hover {
    background: #202c33;
}

.auto-tag-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e9edef;
    font-weight: 500;
}

.auto-tag-title i {
    color: #8696a0;
    font-size: 16px;
}

.auto-tag-badge {
    background: #00a884;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.auto-tag-chevron {
    color: #8696a0;
    transition: transform 0.3s;
}

.auto-tag-chevron.rotated {
    transform: rotate(180deg);
}

.auto-tag-content {
    padding: 16px;
    border-top: 1px solid #313d45;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.auto-tag-description {
    background: #1a2730;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #8696a0;
    margin-bottom: 16px;
    line-height: 1.5;
}

.auto-tag-description i {
    color: #00a884;
    margin-right: 6px;
}

.auto-tag-description strong {
    color: #00a884;
}

.auto-tag-description em {
    color: #667781;
    font-style: italic;
}

.auto-tag-content .form-group {
    margin-bottom: 14px;
}

.auto-tag-content .form-group:last-child {
    margin-bottom: 0;
}

.auto-tag-content label {
    color: #aebac1;
    font-size: 13px;
    margin-bottom: 6px;
}

.auto-tag-content input[type="text"],
.auto-tag-content textarea {
    background: #1a2730;
    border: 1px solid #313d45;
    border-radius: 6px;
    color: #e9edef;
    padding: 10px 12px;
    width: 100%;
    font-size: 13px;
    transition: border-color 0.2s;
}

.auto-tag-content input[type="text"]:focus,
.auto-tag-content textarea:focus {
    border-color: #00a884;
    outline: none;
}

.auto-tag-content textarea {
    resize: vertical;
    min-height: 60px;
}

.auto-tag-content small {
    display: block;
    color: #667781;
    font-size: 11px;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #e9edef;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00a884;
    cursor: pointer;
}

