/**
 * 2007-2025 PrestaShop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to http://www.prestashop.com for more information.
 *
 * @author    4webs <info@4webs.es>
 * @copyright 2025 4webs
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

.fw-desired-quantities {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-color: #f9f9f9;
    clear: both;
    width: 100%;
}

.fw-desired-quantities h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #363A41;
}

.desired-quantities-description {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.desired-quantities-form-content {
    margin-top: 15px;
}

.desired-quantities-form-content .form-group {
    margin-bottom: 15px;  
    display: flex;
    justify-content: start;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
}

.desired-quantities-form-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #363A41;
}

.desired-quantity-input {
    width: 100%;
    max-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.desired-quantities-submit {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
}

.desired-quantities-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.desired-quantities-message {
    margin-top: 15px;
    margin-bottom: 15px;
}


.desired-quantities-message .alert {
    padding: 15px;
    margin-bottom: 0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.desired-quantities-message .alert {
    padding: 10px 15px;
    margin-bottom: 0;
    border-radius: 4px;
}

.desired-quantities-message.success .alert {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.desired-quantities-message.error .alert {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

