.mass-times-data {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
	margin: 0 auto;
    width: fit-content;
    gap: 0; /* Remove gap for tight side-by-side layout */
}

.mass-day-block {
	display: grid;
    grid-template-columns: auto auto auto auto;
    align-items: baseline;
    padding: 10px;
    column-gap: .75rem;
}

.mass-day-label {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    white-space: nowrap; /* Prevent line breaks */
	text-align: left;
}

.mass-times-list {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    width: 100%; /* Ensure full width */
}

.mass-time-item {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    width: 100%;
	line-height: 1.10em;
}

/* Ensure proper spacing and line breaks */
.mass-time-item:last-child {
    margin-bottom: 0;
}

.no-mass {
    font-style: italic;
    opacity: 0.8;
    display: block;
}

.mass-sublabel {
    font-style: italic;
    color: #ffd700;
    font-size: 0.7em;
    margin-left: 5px;
	white-space: nowrap; /* Prevent line breaks */
}


/* Mobile responsiveness */
@media screen and (max-width: 768px) {	
	.mass-day-block {
		display: flex;
		flex-direction: column;
		flex: 1; /* This makes them equal width and side-by-side */
		padding: 0 10px; /* Add some spacing between them */
		text-align: left;
	}	
    .mass-times-data {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		gap: 20px;
		width: -webkit-fill-available;
    }
    
    .mass-day-label {
		display: block;
        font-size: 18px;
		text-align: center;
		width: 100%;
    }
    
    .mass-times-list {
        font-size: 16px;
    }
	.mass-time-item {
	    text-align: center;
	}
}