/* .custom-calendar {
    background-color: #ffffff;
} */

.table-calendar th {
    border: 1px solid rgba(0, 0, 0, 0.175);
}

.table-calendar {
    table-layout: fixed;
    margin: 0 10px 0 10px;
    text-align: center;
    margin: auto;
    width: 95%;
}

.table-calendar thead th {
    background: var(--bs-custom-green);
    font-size: large;
    font-weight: bold;
    color: black;
}

.calendar-day {
    background-color: black;
    color: white;
    border-radius: 10px;
    width: 40px;
    position: relative;
    left: 50%;
    margin: 5px 0 5px -20px;
    font-size: 14px;
    display: block;
}

.list-group-item .calendar-day, .list-group-item .calendar-day-other {
    text-align: center;
    width: 120px;
    margin: 5px 0 5px -60px;
    border-radius: 10px;
}

.calendar-day-other {
    background-color: rgb(120, 120, 120);
    color: white;
    border-radius: 10px;
    width: 40px;
    position: relative;
    left: 50%;
    margin: 5px 0 5px -20px;
    font-size: 14px;
    display: block;
}

.table-calendar tbody th {
    margin: 0;
    padding: 0;
}

.calendar-element {
    border-left: 8px solid black;
    border-top: 0.1px solid black;
    /* border-bottom: 0.1px solid black;*/
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
    color: black;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-element-daily {
    border-left: 8px solid black;
    border-top: 2px solid black;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: black;
    font-size: 16px;
    font-weight: 600;
    padding: 2px 5px;
}

a.link-event {
    color: black;
}

.calendar-training {
    border-color: rgba(13,110,253);
    background: linear-gradient(to right, rgba(13,110,253, 0.6) 0%, rgba(13,110,253, 0.1) 100%);
    background-repeat: no-repeat;
}

.calendar-match {
    border-color: rgba(25,135,84);
    background: linear-gradient(to right, rgba(25,135,84, 0.6) 0%, rgba(25,135,84, 0.1) 100%);
    background-repeat: no-repeat;
}

.calendar-stage {
    border-color: rgba(13, 202, 240);
    background: linear-gradient(to right, rgba(13, 202, 240, 0.6) 0%, rgba(13, 202, 240, 0.1) 100%);
    background-repeat: no-repeat;
}

.calendar-tournament {
    border-color: rgba(255,193,7);
    background: linear-gradient(to right, rgba(255,193,7, 0.6) 0%, rgba(255,193,7, 0.1) 100%);
    background-repeat: no-repeat;
}

.calendar-other {
    border-color: rgba(220,53,69);
    background: linear-gradient(to right, rgba(220,53,69, 0.6) 0%, rgba(220,53,69, 0.1) 100%);
    background-repeat: no-repeat;
}

.link-day, .link-event {
    text-decoration: none;
}

.grey {
    background-color: grey !important; 
}

.red {
    background-color: red !important;
}

.green {
    background-color: green !important;
}

.orange {
    background-color: orange !important;
}

.orange a {
    display: block;
    text-decoration: none;
    color: black;
}