#calendar table {
    border-spacing: 0 15px;
    border-collapse: separate;
}

#calendar .thead-dark tr th {
    background: var(--brown);
    border: 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 1.5rem 0.75rem;
}

#calendar .thead-dark tr th:first-child {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

#calendar .thead-dark tr th:last-child {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

#calendar tbody tr {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
}

.table tbody tr td span {
    font-weight: 600;
}

#calendar tbody tr td {
    vertical-align: middle;
    text-align: center;
    /* border: 0; */
}

#calendar tbody tr td {
    border: 1px solid #E6E6E6;
    border-left: 0;
    border-right: 0;
}

#calendar tbody tr td:first-child {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    border-left: 1px solid #E6E6E6;
}

#calendar tbody tr td:last-child {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border-right: 1px solid #E6E6E6;
}
