/* body {
    display: none;
}

table {
    font-family: Manjari, arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
} */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* General Body and Container Styling */
body {
    background-color: #f0f2f5;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 2rem;
}

.article {
    max-width: 1000em;
    margin: 3rem auto;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

h3 {
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

p {
    text-align: justify;
    margin-bottom: 1rem;
}

a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Table container for horizontal scrolling */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.1rem;
    border: 0.01em solid #e9ecef;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    min-width: 1200px; /* Ensures the table is wide enough to scroll on mobile */
}

thead {
    background-color: #34495e;
    color: #ffffff;
}

th, td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    text-align: left;
    white-space: nowrap; /* Prevents text from wrapping */
}

th:last-child,
td:last-child {
    border-right: none;
}

/* Make the first column sticky */
.sticky-column {
    position: sticky;
    left: 0;
    z-index: 2; /* Ensures it stays on top */
}

/* Background colors for sticky cells to prevent text from showing through */
th.sticky-column {
    background-color: #34495e; /* Header sticky color */
    border-right: 1px solid #e9ecef;
}

td.sticky-column {
    background-color: #ffffff; /* Regular sticky cell color */
}

tbody tr:nth-of-type(even) td.sticky-column {
    background-color: #f8f9fa; /* Alternating background for sticky cell */
}

tbody tr:nth-of-type(even) {
    background-color: #f8f9fa;
}

tbody tr:hover {
    background-color: #eceff1;
    cursor: pointer;
}

/* Icons for Checkmarks and X's */
.checkmark {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1em;
}

.cross {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1em;
}
