.day-card {
    border: 2px solid transparent;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, border-color 0.3s ease;
    width: 140px;
}
.day-card:hover {
    transform: scale(1.03);
}
.day-card.high {
    border-color: rgba(220, 53, 69, 0.8);
}
.day-card.moderate {
    border-color: rgba(255, 193, 7, 0.8);
}
.day-card.low {
    border-color: rgba(40, 167, 69, 0.8);
}
.day-card.NoChange {
    border-color: rgba(108, 117, 125, 0.8);
}
.radio-group label {
    display: inline-block;
    margin: 0 10px;
    font-weight: bold;
    color: #333;
}

#calendar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .day-card {
        width: 45%;
    }
}
@media (max-width: 480px) {
    .day-card {
        width: 90%;
    }
}

/* General container spacing */
.coach-schedule-builder {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Target dropdown styling */
.target-selector {
    display: flex;
    align-items: center;
    margin: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.target-selector label {
    font-weight: bold;
    font-size: 16px;
}

.target-selector select {
    padding: 8px 12px;
    border: 2px solid rgba(230, 57, 70, 0.6);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #111;
    font-size: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.target-selector select:hover {
    transform: scale(1.03);
    border-color: rgba(230, 57, 70, 1);
}

/* View toggle buttons */
.view-toggle {
    display: flex;
    justify-content: center;
    margin: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.view-toggle button {
    margin: 10px;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    background-color: rgba(230, 57, 70, 0.8);
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.view-toggle button:hover {
    background-color: rgba(230, 57, 70, 1);
    transform: scale(1.05);
}

.coach-schedule-builder h3{
    color: white;    
}

/* Submit button */
#target-type {
    margin: 15px;
    padding: 10px;
    height: 50px;
}
#target-id {
    margin: 15px;
    padding: 10px;
    height: 50px;
}

/* Submit button */
#submit-schedule {
    display: block;
    margin: 30px auto 0;
    padding: 12px 24px;
    background-color: rgba(230, 57, 70, 0.9);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#submit-schedule:hover {
    transform: scale(1.05);
}
