:root {
    --color1: hotpink;
    --bg: black;
}

body {
    overflow-y: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

tr {
    height: 50px;
    padding: 0.5rem;
}

.selectable-row:hover {
    background-color: rgba(0,0,0,0.2);
    cursor: pointer;
}

.side-menu-container {
    display: flex;
    height: 100vh;
    width: 200vw;
    transition: 0.3s;
    position: relative;
}

.show-menu {
    transform: translateX(0);
}

.hide-menu {
    transform: translateX(-100vw);
}

.side-menu {
    height: 100vh;
    width: 100vw;
    background-color: hotpink;
}

.actions-bar {
    height: 50px;
    width: 100%;
}

.content-container {
    height: calc(100% - 50px); /*-50px for the `actions-bar`*/
    width: 100vw;
}

.calendar-container {
    height: 50%;
    width: 100%;
}

.day-details-container {
    height: 50%;
    width: 100%;
}

.items-container {
    height: calc(100% - 50px);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    overflow-x: hidden;
    overflow-y: scroll;
}

.menu-container {
    height: 100%;
    padding-left: 0.75rem;
    padding-right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
}

.form-panel {
    height: 100vh;
    width: 100vw;
    z-index: 5;
    position: absolute;
    top: 0;
    transition: 0.3s;
    background-color: white;
}

.show-form {
    left: 50%;
}

.hide-form {
    left: 100%;
}


/*Minx overrides*/
.t-content {
    height: 100%;
}

.tab-list-item {
    height: 50px;
    padding-top: 1rem;
}

.modal {
    height: 80vh;
    width: 100vw;
}
