/**
 * Analix Quotation Frontend Styles
 */

/* Basic frontend styles for any public-facing elements */
.analix-quotation-public {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.analix-quotation-widget {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.analix-quotation-widget h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.analix-quotation-form {
    display: grid;
    gap: 15px;
}

.analix-quotation-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.analix-quotation-form label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.analix-quotation-form input,
.analix-quotation-form select,
.analix-quotation-form textarea {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.analix-quotation-form input:focus,
.analix-quotation-form select:focus,
.analix-quotation-form textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.analix-quotation-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.analix-quotation-button:hover {
    background: #2980b9;
}

.analix-quotation-button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

/* Responsive design */
@media (max-width: 768px) {
    .analix-quotation-widget {
        padding: 15px;
    }
    
    .analix-quotation-form {
        gap: 12px;
    }
}

/* Print styles for PDF */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .no-print {
        display: none !important;
    }
    
    .analix-quotation-widget {
        box-shadow: none;
        border: none;
    }
}

