.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 15px;
}

.table {
    background: white;
}

/* Panels d'information (General / Dividends / Liquidité) */
.info-table td:first-child {
    font-weight: bold;
    width: 40%;
    background-color: #f9f9f9;
}

.info-table td:last-child {
    width: 60%;
}

.panel {
    margin-bottom: 20px;
}

footer {
    margin-top: 40px !important;
}

/* Footer fixé en bas */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #ffeb3b; /* jaune doux */
    font-size: 14px; /* plus petit */
    font-weight: bold;
    text-align: center;
    padding: 10px 15px;
    line-height: 1.4;
    z-index: 9999; /* rester au-dessus du reste */
}

/* Pour éviter que le footer recouvre le contenu */
body {
    padding-bottom: 70px; /* même hauteur que le footer */
}

.search-bar {
    display: flex;
    justify-content: center;  /* Centre horizontalement */
    align-items: center;
    gap: 10px;                 /* espace entre les éléments */
    margin: 20px 0;
}

.search-bar select,
.search-bar input {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    min-width: 160px;
}

.search-bar button {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    background: #1a73e8;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.search-bar button:hover {
    background: #155fc3;
}

#performanceTable th:first-child,
#performanceTable td:first-child {
    border-left: 3px solid #555 !important;
}

#performanceTable tbody td:nth-child(4),
#performanceTable thead tr:nth-child(1) th:nth-child(2),
#performanceTable thead tr:nth-child(2) th:nth-child(4) {
    border-left: 3px solid #555 !important;
}

#performanceTable tbody td:nth-child(9),
#performanceTable thead tr:nth-child(1) th:nth-child(3),
#performanceTable thead tr:nth-child(2) th:nth-child(9) {
    border-left: 3px solid #555 !important;
}

#performanceTable tbody td:last-child,
#performanceTable thead th:last-child {
    border-right: 3px solid #555 !important;
}