.calendar-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.sport-title {
    background: #2f2f2f;
    color: #fff;
    padding: 10px;
    font-weight: 700;
}

.league-title {
    padding: 8px 10px;
    background: #f5f5f5;
    font-weight: 600;
}

.calendar-event {
    display: grid;
    grid-template-columns: 60px 1fr;
    padding: 8px 10px;
    border-bottom: 1px solid #e5e7eb;
}

.score {
    margin: 0 8px;
}

.calendar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.calendar-header button {
    padding: 4px 8px;
    cursor: pointer;
}

.calendar-picker {
    padding: 4px 6px;
    font-size: 14px;
}


.calendar-sport {
    margin-bottom: 24px;
}

.calendar-sport-title {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    background: #e8ff00;
}

.calendar-league {
    margin-bottom: 12px;
}

.calendar-league-title {
    font-weight: 600;
    font-size: 14px;
    margin: 8px 0;
    color: #374151;

}

.calendar-event {
    display: grid;
    /* grid-template-columns: 50px 1fr 60px; */
    gap: 10px;
    padding: 4px 0;
}

.calendar-event .time {
    font-weight: 600;
}

.calendar-event .score {
    text-align: right;
}


.calendar-header button {
    background: none repeat scroll 0 0 #070707;
    border: none;
    color: #fffefe;
    text-transform: uppercase;
    padding: 0;
    margin: 2px;
    border-radius: 0;
    text-shadow: none;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-header button:hover {
    background: #e8ff00;
    color: #070707;
}

.calendar-event .teams {
    text-align: center;
    display: flex;
}

.teams .team {
    width: 45%;
    display: inline-flex;
}

.teams .score {
    width: 10%;
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
}

.teams .team-first {
    justify-content: end;
}

.teams .team-second {}

.cal-header-results{
    font-size: 20px;
    font-weight: bold;
}
.calendar-header-controls{
    display: flex;
}
.calendar-header-controls .calendar-picker{
  margin: 0 10px;
}