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


.tracking-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tracking-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 8px;
    border-bottom: 1px solid #d6d4d4;
    flex-direction: column;
}

.carrier-name {
    font-weight: bold;
    color: #555;
}

.tracking-link {
    color: #25b9d7;
    text-decoration: none;
}

.tracking-link:hover {
    text-decoration: underline;
}

.tracking-number {
    color: #666;
}
.icon-external-link {
    font-size: 12px;
    color: #25b9d7;
}

.ndkom-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d6d4d4;
}

.ndkom-table-heading {
    background-color: #f0f0f0;
}

.ndkom-table-body {
    background-color: #fff;
}

.ndkom-table-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    border-bottom: 1px solid #d6d4d4;
    justify-content: space-between;
    align-items: center;
}

.ndkom-table-cell {
    padding: 8px;
    /* border: 1px solid #d6d4d4; */
    width: 200px;
}

.ndkom-table-cell.reference {
    width: 100px;
}

.ndkom-table-cell.products {
    width: 250px;
}
.ndkom-table-cell.date {
    width: 100px;
}

.ndkom-table-cell.status {
    width: 250px;
}

.ndkom-table-cell.trackings {
    width: 200px;
}

.ndkom-table .product-item {
    margin-bottom: 1rem;
}
.ndkom-table-cell-status {
    background-color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    color: #fff;
}
.ndkom-table .trackings {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ndkom-table .trackings .tracking-item {
    border:none
}
