/**
 * Craftify AI Admin Styles
 */

.craftify-ai-header {
    margin-bottom: 20px;
    padding: 20px 0;
}

.craftify-logo {
    max-width: 180px;
    height: auto;
}

/* Connection Status Styles */
.craftify-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
}

.craftify-status-connected {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.craftify-status-disconnected {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.craftify-status-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Info Section */
.craftify-ai-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.craftify-ai-info h2 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
}

.craftify-ai-info ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.craftify-ai-info li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.craftify-ai-info li:last-child {
    margin-bottom: 0;
}

/* Form Styles */
.form-table th {
    font-weight: 600;
}

.form-table td .description {
    margin-top: 8px;
    color: #666;
}

/* Override default WordPress input styles */
.wrap input[type="text"].regular-text {
    width: 350px;
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    .craftify-logo {
        max-width: 140px;
    }

    .wrap input[type="text"].regular-text {
        width: 100%;
        max-width: 100%;
    }
}
