/* Admin help page styles for FormNest */

.formnest-help-container {
    max-width: 1200px;
    margin: 20px 0;
}

.formnest-help-section {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.formnest-help-section h2 {
    background: #f6f7f7;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid #c3c4c7;
    font-size: 18px;
    font-weight: 600;
    color: #1d2327;
}

.formnest-help-section h2 .dashicons {
    color: #2271b1;
}

.formnest-help-content {
    padding: 20px;
}

.formnest-help-content h3 {
    margin: 25px 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
}

.formnest-help-content h3:first-child {
    margin-top: 0;
}

.formnest-help-content p {
    margin: 0 0 15px;
    line-height: 1.6;
    color: #646970;
}

.formnest-help-content ul,
.formnest-help-content ol {
    margin: 0 0 15px 20px;
    line-height: 1.6;
    color: #646970;
}

.formnest-help-content li {
    margin-bottom: 5px;
}

.formnest-help-content code {
    background: #f6f7f7;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.formnest-field-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.formnest-field-type-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
}

.formnest-field-type-item strong {
    display: block;
    margin-bottom: 8px;
    color: #1d2327;
    font-size: 14px;
}

.formnest-field-type-item p {
    margin: 0;
    font-size: 13px;
    color: #646970;
}

@media (max-width: 768px) {
    .formnest-help-section h2 {
        padding: 12px 15px;
        font-size: 16px;
    }

    .formnest-help-content {
        padding: 15px;
    }

    .formnest-field-types-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .formnest-field-type-item {
        padding: 12px;
    }
}
