.wc-quotation-wrapper {
    margin: 20px 0;
}

.wc-quotation-instructions {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #2c3e50;
}

.wc-quotation-button {
    background-color: #2c3e50;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wc-quotation-button:hover {
    background-color: #34495e;
    color: #fff;
}

.wc-quotation-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.wc-quotation-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.wc-quotation-close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.wc-quotation-close:hover,
.wc-quotation-close:focus {
    color: #000;
}

.wc-quotation-modal h2 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
}

.wc-quotation-product-info {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wc-quotation-product-info h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.wc-quotation-product-image {
    margin-top: 10px;
}

.wc-quotation-product-image img {
    max-width: 100px;
    height: auto;
}

.wc-quotation-field {
    margin-bottom: 20px;
}

.wc-quotation-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.wc-quotation-field .required {
    color: #e74c3c;
}

.wc-quotation-field input[type="text"],
.wc-quotation-field input[type="email"],
.wc-quotation-field input[type="tel"],
.wc-quotation-field input[type="number"],
.wc-quotation-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.wc-quotation-field textarea {
    resize: vertical;
}

.wc-quotation-actions {
    margin-top: 25px;
}

.wc-quotation-actions button {
    background-color: #27ae60;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wc-quotation-actions button:hover {
    background-color: #229954;
}

.wc-quotation-actions button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.wc-quotation-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
}

.wc-quotation-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wc-quotation-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wc-quotation-message p {
    margin: 0;
}

body.wc-quotation-modal-open {
    overflow: hidden;
}

.wc-quotation-price-text {
    color: #2c3e50;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .wc-quotation-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    .wc-quotation-modal h2 {
        font-size: 20px;
    }
}
