.custom-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1000px;
    font-family: 'Inter', sans-serif;
    table-layout: fixed;
}

.custom-table th, 
.custom-table td {
    border: 1px solid #ccc; /* lighter border for sleek look */
    padding: 8px;
    text-align: left;
}

.custom-table th {
    background-color: #1a1f2b; /* dark navy */
    color: white;
}

.custom-table .section-header {
    background-color: #5b6474; /* muted gray-blue */
    font-weight: bold;
    text-align: left;
}

.custom-table .section-header td {
		color: white;
}

/* Base (desktop) */
.custom-table col:first-child { width: 50px; }   /* # */
.custom-table col:nth-child(3) { width: 120px; } /* Sessions */
.custom-table col:nth-child(4) { width: 80px; }  /* Hours */
.wpo-site-header .header-right>div:last-child { margin: 0 !important; } /* Header language switcher */

/* Tablet */
@media (max-width: 900px) {
  .custom-table col:first-child { width: 40px; }
  .custom-table col:nth-child(3) { width: 100px; }
  .custom-table col:nth-child(4) { width: 60px; }
	.wpo-site-header .header-right>div:last-child { margin: 0 !important; }
}

/* Mobile */
@media (max-width: 767px) {
  .custom-table col:first-child { width: 30px; }
  .custom-table col:nth-child(3) { width: 80px; }
  .custom-table col:nth-child(4) { width: 50px; }
  .custom-table th { font-size: 0.9em; }
	.wpo-site-header .header-right { left: 0px; }
}

.site-logo img,
.navbar-brand img {
  /* display: none !important; */
}