/**
* 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.
*/
.containerPro {
    display: flex;
    flex-direction: column;
    max-width: 1140px;
    margin: auto;
    padding-bottom: 50px;
    padding-top: 50px;
}
.contPro {
    display: flex;
}
.flexFormPro {
    display: flex;
    flex-direction: column;
}
.demiPro {
    padding: 15px;
    flex: 0 0 50%;
}
.pPro {
    padding: 10px;
    flex: 0 0 100%;
}
.ptitPro {
    text-align: center;
    margin-bottom: 15px;
}

.formpro {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.descPro {
    text-align: center;
}
.inputform {
    margin-bottom: 15px;
}
.hiddenPro {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.file-upload-container {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin-bottom: 15px;
}
.file-name-display {
    flex: 1;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.centerPro {
    justify-content: center;
}

@media (max-width: 767px) {
    .contPro {
        flex-direction: column;
    }
}
@media (max-width: 500px) {
    .file-upload-container {
        flex-direction: column;
    }
}
