@charset "UTF-8";
/* CSS Document */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
}

.help-icon {
	font-size: 24px;
	color: blue;
	cursor: pointer;
	text-decoration: none;
}

.help-icon:hover {
	color: darkblue; /* Changement de couleur au survol */
}

/* Style général pour le conteneur du tableau */
.table-container {
    max-height: 400px;
    overflow-y: auto;
    position: relative;
}

/* Style pour l'en-tête du tableau */
.qso-table-main thead {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1;
}

/* 🔹 VOS STYLES EXISTANTS — conservés intégralement */
.qso-table-stats {
	border-left-style: none;
	border-right-style: none;
	border-top-style: none;
	border-bottom: 1.5pt solid black;
	background-color: silver;
	margin-left:auto;
	margin-right:auto;
	width:auto;
	height: auto;
	left: auto;
	top: auto;
	right: auto;
}

.qso-table-even-stats {
	font-weight: bold;
	color: black;
	border-style: none;
	text-align: center;
	background-color: #FFFFEF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.qso-table-top {
	font-weight: bold;
	color: #933b11;
	background-color: #ece9d8;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	border-left-style: none;
	border-right-style: none;
	border-top-style: none;
	border-bottom: 1.5pt solid black;
}

.qso-table-top-Select {
	font-weight: bold;
	background-color: #f77272;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
}

.qso-table-main {
	border-left-style: none;
	border-right-style: none;
	border-top-style: none;
	border-bottom: 1.5pt solid black;
	background-color: silver;
	text-align: center;
	margin-left:auto;
	margin-right:auto;
	width:100%;
	height: 100%;
	left: auto;
	top: auto;
	right: auto;
	/* 🔹 Ajouté : encadrement en double trait fin */
	box-shadow: 0 0 0 2px #999 inset;
}

.qso-table-left {
	font-weight: bold;
	color: #933b11;
	text-align: left;
	background-color: #FFFFEF;
}

.qso-table-even {
	color: #933b11;
	border-style: none;
	text-align: center;
	background-color: #FFFFEF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.qso-table-even2 {
	color: black;
	border-style: none;
	text-align: center;
	background-color: Khaki;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 10px;
	font-style: normal;
}

.qso-table-even-left {
	color: #933b11;
	border: 1px solid #ddd;
	text-align: left;
	background-color: #FFFFEF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.qso-table-top2,
.qso-table-top3,
.qso-table-top4 {
	font-weight: bold;
	color: white;
	border-left-style: none;
	border-right-style: none;
	border-top-style: none;
	border-bottom: 1.5pt solid black;
	background-color: peru;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
}

/* 🔹 NOUVEAU : Largeurs fixes */
.qso-table-main .col-mode {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
}

.qso-table-main .col-continent {
    width: 45px;
    min-width: 45px;
    max-width: 45px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    text-align: center;
}

/* Styles spécifiques pour les boutons */

.stats-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stats-line {
    display: flex;
    gap: 10px;
}

.tri-buttons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
    margin: 1px 0;
}

.tri-button {
    display: inline-block;
    padding: 10px 20px;
	background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.tri-button input[type="radio"] {
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

.tri-button input[type="radio"]:checked + label {
    background-color: #007bff;
    color: white;
}

.tri-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.qso-table-top:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.qso-table-top[onclick] {
    text-decoration: underline;
}

/* Harmonisation des graphiques empilés */
#bestYearBandChart {
    height: 650px !important;
}