
.article{
    margin:0 1% 0 2%;
    padding-bottom:40px;
    font-size:13px;
    min-height:350px;
}
.article h1{
	text-transform: uppercase;
	clear:both;
	font-size: 24px;
	margin:0 0 20px 0;
	border-bottom: 1px solid #D0006F;
}
.article h2{
	font-family:"PT Sans", Arial;
	margin: 10px 0 0 0;
	border-bottom:0;
	font-size:20px;
}

.article h3{
	text-transform: none;
	margin: 5px 0 0 0;
	font-size: 15px;
	height: 23px;
	border-bottom:0;
}

.article h4{
	font-size: 14px;
	margin: 0px;
	padding:0;
	text-transform: none;
	text-decoration:underline;
	border-bottom:0;
}

.article .img_1{
	text-align:center;
	margin:10px 10px 10px 0;
	
}
.article img{
	border:0;
	max-width:100%;
}
.article table{
	width:100%;
}
.article table td{
	font-family:Arial;
	font-size:12px;
	vertical-align:top;
	padding:5px 3px;
	border:1px solid gray;
}
.article div{}
.article a,
.article b,
.article em,
.article u,
.article strong,
.article i,
.article italic{
	vertical-align: baseline;
}

.article .txt-img-droite{
	width:65%;
	vertical-align:top;
	display:inline-block;
}

.article .img-txt-droite{
	width:32%;
	vertical-align:top;
	display:inline-block;
	text-align:center;
}

:root {
    --colissimo-orange: #eb6a0a;
    --chronopost-blue: #009bde;
    --table-border: #e0e0e0;
    --hover-bg: #f9f9f9;
    --header-bg: #333333;
    --header-text: white;
    --tab-inactive: #f1f1f1;
}

.shipping-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    margin-top:20px;
}

/* Tabs styling */
.tabs {
    display: flex;
    border-bottom: 1px solid var(--table-border);
}

.tabs .colissimo{
    color: var(--colissimo-orange);
}
.tabs .chronopost{
    color: var(--chronopost-blue);
}

.tab-button {
    padding: 15px 20px;
    cursor: pointer;
    border: none;
    background-color: var(--tab-inactive);
    font-weight: 600;
    font-size: 16px;
    flex: 1;
    transition: background-color 0.3s ease;
    text-align: center;
}

.tab-button:first-child {
    border-top-left-radius: 8px;
}

.tab-button:last-child {
    border-top-right-radius: 8px;
}

.tab-button.active {
    background-color: white;
    border-bottom: 3px solid var(--header-bg);
}

.tab-button:hover:not(.active) {
    background-color: #e9e9e9;
}

.tab-button.colissimo.active {
    border-bottom-color: var(--colissimo-orange);
}

.tab-button.chronopost.active {
    border-bottom-color: var(--chronopost-blue);
}

/* Tab content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Table styling */
.article .shipping-table {
    width: 100%;
    border-collapse: collapse;
}

.article .shipping-table th {
    background-color: var(--header-bg);
    color: var(--header-text);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.article .shipping-table .domicile,
.article .shipping-table .relais {
    width:200px;
}

.article .shipping-table td {
    padding: 8px 10px;
    text-align: center;
    border-bottom: 1px solid var(--table-border);
    font-size: 14px;
}

.article .shipping-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.article .shipping-table tr:hover {
    background-color: var(--hover-bg);
}

.article .shipping-table .country {
    text-align: left;
    font-weight: 500;
}

.article .shipping-table .price {
    font-weight: bold;
}


.shipping-table .time {
    color: #666;
    font-style: italic;
    padding:3px 0;
    font-size: 12px;
}

.shipping-table .threshold {
    font-size: 13px;
    color: #D0006F;
}

.shipping-table .logo {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 5px;
}

.shipping-type {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Legend */
.legend {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border-radius: 4px;
}

.legend-colissimo {
    background-color: var(--colissimo-orange);
}

.legend-chronopost {
    background-color: var(--chronopost-blue);
}