/* ------------------------------
   Base Reset & Fonts
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.container h1 {
    text-align: center;
    color: #0044cc;
    margin-bottom: 30px;
}

/* ------------------------------
   Table Styling
------------------------------ */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 15px;
    border-radius: 8px;
}

.table-responsive table {
    min-width: 600px;
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 8px;
}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    background-color: #0044cc;
    color: #ffffff;
    font-weight: bold;
    white-space: nowrap;
}

td {
    border-bottom: 1px solid #f0f0f0;
}

tr:hover {
    background-color: #f9f9f9;
}

tr:nth-child(even) {
    background-color: #f6f6f6;
}

a {
    color: #0044cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* PDF Icon */
td a i {
    font-size: 1.2rem;
    color: #0044cc;
}

/* Section Headings */
section h2 {
    margin-top: 40px;
    color: #003399;
    border-left: 4px solid #0044cc;
    padding-left: 10px;
    font-size: 1.4rem;
}

/* Scrollbar style (optionnel) */
.table-responsive::-webkit-scrollbar {
    height: 8px;
}
.table-responsive::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .container h1 {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 1.2rem;
    }

    th, td {
        font-size: 0.95rem;
        padding: 10px;
    }
}
