/**
* 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    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 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.
*/


#useCurrentLocation {
    justify-content: center;
    /*border: none;*/
    margin-top: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(45deg, #007BFF, #0056D2);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, transform 0.4s, box-shadow 0.3s;
}
#useCurrentLocation i {
    font-size: 18px; /* Adjust icon size */
}


#useCurrentLocation i {
    font-size: 20px;
    transition: transform 0.3s ease;
    margin-inline-end: 0;
}

#useCurrentLocation:hover {
    background: linear-gradient(45deg, #0056D2, #007BFF);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Button Styles */
#map {
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    line-height: 1.5;
    text-decoration: none;
    margin-top: 9px;
    margin-left: 9px;
    color: #ffff !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: bold;
    background: linear-gradient(45deg, #007BFF, #0056D2);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
        text-transform: uppercase;
}
#map i {
    font-size: 23px;
    transition: transform 0.3s ease;
}
#map:hover {
  background: linear-gradient(45deg, #0056D2, #007BFF);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
/*#map:hover i {
  transform: scale(1.2) rotate(20deg);
}*/
#map:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

/* Small Button Styles */
#map.btn-sm {
    padding: 8px 12px 8px 8px;
    font-size: 13px;
}

/* Hover and Focus States */

/* Focus State for Accessibility */
#map:focus {
  outline: 2px solid #0056b3;
}
