/* Club Syllabus Table Styles */

.club-syllabus-small {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 700px;
	margin: 0 auto; 
    overflow-x: auto;
}

.club-syllabus-table {
    width: 90%;      /* 90% width of the container */
    margin: 0 auto;       /* center the table horizontally */
    border-collapse: collapse;
    table-layout: fixed;
	border: 2px solid #999 !important;
	}

.club-syllabus-table th,
.club-syllabus-table td {
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
	border: 1px solid #999;
}

/* Set column widths */
.club-syllabus-table th:nth-child(1),
.club-syllabus-table td:nth-child(1) {
    width: 17%;
}

.club-syllabus-table th:nth-child(2),
.club-syllabus-table td:nth-child(2) {
    width: 63%;
}

.club-syllabus-table th:nth-child(3),
.club-syllabus-table td:nth-child(3) {
    width: 20%;
}

.club-syllabus-table thead th {
    background-color: #9fa8c4 !important;
	line-height: 1.8;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .club-syllabus-table {
        font-size: 0.85em;
        width: 100%; /* allow full width on smaller screens */
    }

    .club-syllabus-table th,
    .club-syllabus-table td {
        padding: 6px;
    }
}
/* Styling for Club Competition Sidebar Widget */

.club-syllabus-widget {
  line-height: 1.5; /* Increase line height slightly */
}

.club-syllabus-widget ul li:first-child {
  margin-top: 1em; /* Adjust this value as you like */
}

.club-syllabus-widget ul li {
  margin-bottom: 0.5em; /* Add some space below each list item */
}

/* Styling for Weekly What's On Table */
.club-syllabus-weekly-table {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: fixed;
	border: 2px solid #999 !important;
}

.club-syllabus-weekly-table th,
.club-syllabus-weekly-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ccc;
    word-wrap: break-word;
}

/* Column widths for 5 columns: Date, Event, Time, Venue, Link */
.club-syllabus-weekly-table th:nth-child(1),
.club-syllabus-weekly-table td:nth-child(1) {
    width: 16%;
}

.club-syllabus-weekly-table th:nth-child(2),
.club-syllabus-weekly-table td:nth-child(2) {
    width: 42%;
}

.club-syllabus-weekly-table th:nth-child(3),
.club-syllabus-weekly-table td:nth-child(3) {
    width: 13%;
}

.club-syllabus-weekly-table th:nth-child(4),
.club-syllabus-weekly-table td:nth-child(4) {
    width: 17%;
}

.club-syllabus-weekly-table th:nth-child(5),
.club-syllabus-weekly-table td:nth-child(5) {
    width: 12%;
}

.club-syllabus-weekly-table thead th {
    background-color: #9fa8c4 !important;
}

/* Responsive styling */
@media screen and (max-width: 768px) {
    .club-syllabus-weekly-table {
        font-size: 0.85em;
        width: 100%;
    }

    .club-syllabus-weekly-table th,
    .club-syllabus-weekly-table td {
        padding: 6px;
    }
}

.action-btn {
    background-color: #528ab7;
    color: #fff;
    border: none;
    padding: 8px 14px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 5px;
    transition: background-color 0.2s ease-in-out;
}

.action-btn:hover {
    background-color: #005a87;
}
