/* Styling for the club info container */
.club-info-container {
    width: 100%;
}

#post-content{
	flex-basis: 66.66%;
}
#post-aside{
	flex-basis: 33.33%;
}
 
.is-layout-display-inline-block{
	display:inline-block;
}

/* Styling for the table */
.club-info-table {
    width: 100%;
    border-collapse: collapse;
}

/* Styling for table header */
.club-info-table th {
    padding: 10px;
    text-align: left;
	border-bottom: 1px solid #ddd;
    width: 40%;
    vertical-align: top;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
	font-weight: 400;
}

/* Styling for table data */
.club-info-table td {
    padding: 10px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    font-weight: 700;
    padding-left: 10px;
}

/* Hover effect for table rows */
.club-info-table tr:hover {
    background-color: #f1f1f1;
}