/**
* 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.
*/

.network-selector {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    border: 2px solid #1e64c8;
}

.network-list,
.city-list,
.address-list {
    list-style-type: none;
    padding-left: 0;
    margin: 5px 0;
}

.network-toggle, .city-toggle {
    font-weight: bold;
    color: #1e64c8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.network-toggle::after, .city-toggle::after {
    content: '\\25BC'; /* Strzałka w dół */
    font-size: 12px;
    margin-left: 5px;
}

.network-toggle.open::after, .city-toggle.open::after {
    content: '\\25B2'; /* Strzałka w górę */
}

.city-list, .address-list {
    display: none;
}

input[type=\"radio\"] {
    margin-right: 5px;
}

.address-list li {
    text-align: left;
}
.address-list li label {
    color: #1e64c8;
    text-align: left;
}
.register_form_span {
    width: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    display: block;
}
.radio-label {
    background: none;
    border: none;
    color: #fff;
}
#faktura::placeholder, #ilosc::placeholder, #note_date {
    color: #0056d0;
    opacity: 1; /* Firefox */
}

#faktura::-ms-input-placeholder, #ilosc::-ms-input-placeholder { /* Edge 12 -18 */
    color: #0056d0;
}

input[type="file"] {
    display: none;
  }
  
  /* Stylizowany przycisk */
  .upload-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #0056d0;
    background-color: #f8f9fa;
    border: 2px solid #0056d0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .upload-button:hover {
    background-color: #0056d0;
    color: #ffffff;
  }
  
  /* Ikonka */
  .upload-button .icon {
    width: 24px;
    height: 24px;
    background: url('../img/icon_upload_file.png') no-repeat center center;
    background-size: contain;
  }
  .register_comment {
    color: #fff;
    font-size: 14px;
  }
  .oddzialy .hidden {
    display: none;
  }
  .form-control {
    color: #0056d0;
  }
  .register_order_title {
    text-align: center;
    color: #0056d0;
    font-size: 22px;
  }