/**
* 2007-2022 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    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2022 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.carrier-extra-content {
    padding: 0 15px;
}

.pinta_np_carrier_extra_content {
    flex-grow: 1;
}

.pinta_np_input {
    margin-bottom: 10px;
}

.delivery-option {
    align-items: center!important;
}

.delivery-option .row {
    align-items: center!important;
}

.delivery-option label {
    margin-bottom: 0;
}

.invalid-feedback {
    display: none; /* Initially hidden */
    width: 100%; /* Full width */
    margin-bottom: .25rem; /* Space between error message and input */
    font-size: .875em; /* Bootstrap's default font size for error messages */
    color: #f3a656; /* Bootstrap's default error color */
    position: absolute; /* Position it absolutely within the relative parent */
    bottom: 100%; /* Position it above the input */
    left: 0;
    z-index: 5; /* Ensure it's above other elements */
    background: #f3a656; /* Error color background */
    color: white; /* Text color */
    padding: .5em; /* Padding inside the tooltip */
    border-radius: .25rem; /* Rounded corners like Bootstrap */
    box-shadow: 0px 2px 5px rgba(0,0,0,.2); /* Slight shadow for depth */
}

.invalid-feedback::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20px; /* Position the arrow in the center */
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #f3a656 transparent transparent transparent; /* Arrow color */
}

.form-group {
    position: relative; /* Required to position the .invalid-feedback absolutely */
    padding-bottom: 1rem; /* Space for the tooltip */
}


