@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: auto;
    font-family: "Inter", sans-serif;
    background-image: url("booking_bg.jpg");
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.content {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.header {
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 5px;
    padding: 5px;
    height: 8vh;
    min-height: 80px;
}

.header>* {
    /* flex: 0; */
    color: white;
}

.main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.form-wrapper {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
    background: white;
    /* custom style */
    padding: 20px;
    background-color: #c7c7e6;
    border-radius: 5px;
}

.input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.input-flex>div {
    width: 50%;
}

.input-radio-wrapper {
    margin-bottom: 28px;
}

.radio-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-label {
    font-size: 14px;
    line-height: 24px;
    color: #07074D;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #FFFFFF;
    border: 1px solid #DDE3EC;
    border-radius: 50%;
}

.radio-label .input-radio:checked~.radio-checkmark {
    background-color: #6A64F1;
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-label .input-radio:checked~.radio-checkmark:after {
    display: block;
}

.radio-label .radio-checkmark:after {
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFFFFF;
    transform: translate(-50%, -50%);
}

.form-input {
    width: 100%;
    padding: 13px 22px;
    border-radius: 5px;
    border: 1px solid #DDE3EC;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    color: #07074D;
    outline: none;
    resize: none;
}

.form-input::placeholder {
    color: #536387;
}

.form-input:focus {
    border-color: #6a64f1;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.form-label {
    color: #07074D;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
}

.btn {
    text-align: center;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    padding: 14px 25px;
    border: none;
    font-weight: 500;
    background-color: #6A64F1;
    color: white;
    cursor: pointer;
    margin-top: 25px;
}

.error {
    padding: 10px;
    background-color: lightyellow;
    border-radius: 5px;
    margin-bottom: 5px;
}

/* .ec-resource {
    padding: 0!important;
}

.ec-resource span {
    display: flex;
    padding: 0!important;
    column-gap: 10px;
}

.ec-title-container {
    padding-left: 10px;
    padding-right: 10px;
    align-content: center;
}

.ec-seats-container {
    align-content: center;
    padding-left: 10px;
    padding-right: 10px;
    border-left: 1px solid var(--ec-border-color)
} */

input[type=checkbox] {
    width: 25px;
    height: 25px;
}

.container {
    width: 100%;
    height: 90vh;
    max-height: 90vh;
    overflow: auto;
}

#index-container {
    display: flex;
    flex-direction: row;
    width: 100vw;
    overflow: auto;
}

#calendar {
    padding: 10px;
}

#calendar-input-container {
    align-items: center;
    justify-content: center;
}

#show-cancelled-reservations-container {
    /* display: flex;
    align-content: center; */
}

#reservations-container {
    width: 20vw;
}

#pending-reservations-container, #rejected-reservations-container {
    /* width: 20vw; */
    background-color: lightgrey;
}

.ui-tabs-panel {
    padding: 6px!important;
}

#reservations-header {
    margin-bottom: 10px;
    padding: 10px;
    background-color: white;
}

#pending-reservations, #rejected-reservations {
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    /* padding: 10px; */
}

.pending-reservation {
    border: 1px solid black;
    padding: 5px;
    background-color: white;
    border-radius: 5px;
}

.rejected-reservation {
    border: 1px solid black;
    padding: 5px;
    background-color: pink;
    border-radius: 5px;
}

.filter-seats-container, .print-reservations-container {
    width: 200px;
    min-width: 200px;
    padding: 10px;
}

#print-reservations {
    margin-top: 0;
}

#table_plan {
    overflow: auto;
}

.table-plan-table {
    float: left;
    /* position: relative; */
    position: absolute;
    user-select: none;
}

.table-plan-table-edit-btn {
    padding: 2px;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    width: 100%;
    height: 100%;
    overflow: auto;
    flex-direction: column;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.ec-timeline .ec-time,
.ec-timeline .ec-line {
    width: 120px;
}

#time_start option[disabled], #time_end option[disabled] {
    display: none;
}

.settings-location-entry {
    border: 1px solid black;
    min-width: 400px;
    border-radius: 5px;
    padding: 10px;
}

.header-btn {
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    border-radius: 5px;
    padding: 5px 25px;
    border: none;
    font-weight: 500;
    background-color: #6A64F1;
    color: white;
    cursor: pointer;
}

.btn-red {
    background-color: red;
}

.btn:disabled, .btn-red {
    background-color: #807e9e;
}

.ui-dialog .ui-dialog-content {
    overflow-y: scroll !important;
}

.icon-btn {
    border-radius: 5px;
    border: none;
    width: 60px;
    height: 60px;
    background-color: #6A64F1;

}

.align-right {
    display: flex;
    flex-direction: row-reverse;
}