
/* ----- */
/* Modal */
/* ----- */

.custom-modal-zindex {
    z-index: 1500 !important;
    position: relative;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

/* -------- */
/* Trashbin Index view */
/* -------- */
.delete-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
/* ------- */
/* Content */
/* ------- */
.content {
    background-color: #f8f9fa;
    min-height: 100vh;
    margin-left: 200px;
    padding-top: 70px;
}
.content-not-authed {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding-top: 70px;
}
/* -------- */
/* Sidemenu */
/* -------- */
.sidebar {
    background-color: #f8f9fa;
    min-height: 100vh;
    width: 210px;
    position: fixed;
    top: 60px;
    z-index: 1000;
}
/* -------- */
/* Calendar */
/* -------- */
.bg-lightgreen {
    background-color: lightgreen !important;
}
.focused-match {
    border: 2px solid black;
}
.upcoming-match {
    border: 2px solid grey;
}
/* --------- */
/* Quickgrid */
/* --------- */
.custom-table-td tbody tr td {
    padding-left: 20px;
}

/* ----------- */
/* Mobile view */
/* ----------- */
@media (max-width: 992px) {
    .card {
        overflow-y: auto;
    }

    .calendar-text-size {
        font-size: 9px;
    }

    .sidebar {
        position: fixed;
        width: 100%;
        height: 120px;
        min-height: 120px;
        top: auto;
        background-color: #f8f9fa;
        padding-top: 60px;
    }

    .sidebar .sidebar-links {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .sidebar .sidebar-links .sidemenu-link {
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 0px;
        width: auto;
    }

    .content {
        margin-left: 0;
        padding-top: 120px;
    }

    .navbar-brand-custom {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .hide-on-small-screen {
        display: none;
    }
}