

/* Day Card */
.day-block {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    padding: 25px 20px;
    border: 1px solid #e0e0e0;
}

/* Day Header */
.day-block h3 {
    font-size: 1.5em;
    color: #1a1a1a;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Sessions Row */
.sessions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Session Block */
.session-block {
    flex: 1 1 45%; /* side by side on desktop */
    display: flex;
    flex-direction: column;
}

.session-block label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}

/* Dropdowns */
.elective-select {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: 0.3s all;
    background: #fafafa;
}

.elective-select:focus {
    outline: none;
    border-color: #0071a1;
    box-shadow: 0 0 5px rgba(0,113,161,0.2);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .sessions {
        flex-direction: column;
    }
    .session-block {
        flex: 1 1 100%;
    }
}





/* Day Card */
.day-block {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    padding: 25px 20px;
    border: 1px solid #e0e0e0;
}

/* Day Header */
.day-block h3 {
    font-size: 1.5em;
    color: #1a1a1a;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Sessions Row */
.sessions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Session Block */
.session-block {
    flex: 1 1 45%; /* side by side on desktop */
    display: flex;
    flex-direction: column;
}

.session-block label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}

/* Dropdowns */
.elective-select {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: 0.3s all;
    background: #fafafa;
}

.elective-select:focus {
    outline: none;
    border-color: #0071a1;
    box-shadow: 0 0 5px rgba(0,113,161,0.2);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .sessions {
        flex-direction: column;
    }
    .session-block {
        flex: 1 1 100%;
    }
}

.multisport-electives-wrapper {
    max-width: 700px; /* or any width that fits your product summary */
    width: 100%;
    margin-top: 20px;
}

/* Keep original day-card styling inside this container 
.multisport-electives {
    display: grid !important;
    gap: 20px !important;
    grid-template-columns: repeat(2, 1fr);
}
.multisport-electives h3 {
    grid-column: span 2;
}
.electives-wrapper {
    margin-top: 10px;
}

.electives-day {
    margin-bottom: 12px;
}

.electives-day-title {
    font-weight: 600;
    margin-bottom: 6px;
    border-bottom: 1px solid #ddd;
}

.electives-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #eee;
}

.electives-session {
    width: 25%;
    color: #555;
}

.electives-activity {
    width: 45%;
}

.electives-price {
    width: 30%;
    text-align: right;
}
*/


