/* Write your custom CSS here */
.reservation-date {
    display: inline-block;
    width: 100%;
}

.reservation-date input {
    float: right;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 15px;
}

.reservation-list .reservation-area {
    width: 100%;
    background-color: white;
    margin-top: 13px;
    padding: 15px;
    border-radius: 7px;
    box-shadow: 0 0 11px #ccc;
    margin-bottom: 15px;
}

.reservation-list .reservation-area span {
    width: 100%;
    display: block;
}

.reservation-list .reservation-area h5 {
    width: 100%;
    display: block;
    font-size: 26px;
    margin-top: 7px;
    font-weight: 400;
}

.reservation-list .reservation-area p {
    width: 100%;
    display: block;
    margin-bottom: -2px;
    background-color: #cecece;
    text-align: center;
    padding: 8px 5px;
    color: #fff;
    border-radius: 50px;
    margin-top: -5px;
}

.reservation-list .reservation-area p.active {
    background-color: green;
}

.alert-message {
    text-align: center;
    border: 1px dashed #ccc;
    border-radius: 5px;
    padding: 55px 0;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 300;
}

.list-group {
    margin: 0;
    padding: 0;
}

.list-group li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-group li a {
    color: #363637;
    background-color: #ebebeb;
    display: block;
    margin-bottom: 2px;
    padding: 8px 9px;
    text-decoration: none;
    border-radius: 7px;
    margin-top: 10px;
}

.reservation-content .content-area {
    width: 100%;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.reservation-content .add-button {
    float: right;
    background-color: #263461;
    display: table;
    margin-bottom: 15px;
    padding: 9px 20px;
    padding-right: 15px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    margin-top: 15px;
}

.reservation-content .list-button {
    width: 100%;
    display: block;
    background-color: #a6a6a6;
    text-align: center;
    padding: 8px 5px;
    color: #fff;
    border-radius: 5px;
    margin-top: 15px;
}

.reservation-content .status-button {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    background-color: red;
    display: block;
    padding: 10px 3px;
    border-radius: 500px;
    color: #fff;
}

.section-header {
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
    font-weight: 400;
    font-size: 16px;
    position: relative;
}

.section-header::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1c3981;
    position: absolute;
    left: 0;
    bottom: -3px;
    border-radius: 5px;
}

.group-not-found {
    width: 100%;
    display: inline-block;
    text-align: center;
    border: 2px dashed #ccc;
    padding: 30px 0;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #7c7c7c;
    margin-top: 15px;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
    opacity: 0.5;
}

/**/

.seat-picker {
    background-color: #242333;
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.seat-container {
    perspective: 1000px;
    margin-bottom: 10px;
}

.seat {
    background-color: #444451;
    height: 20px;
    width: 20px;
    margin: 3px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.seat.selected {
    background-color: #6feaf6;
}

.seat.occupied {
    background-color: #fff;
}

.seat:nth-of-type(2) {
    margin-right: 18px;
}

.seat:nth-last-of-type(2) {
    margin-left: 18px;
}

.seat:not(.occupied):hover {
    cursor: pointer;
    transform: scale(1.2);
}

.showcase.seat:not(.occupied):hover {
    cursor: default;
    transform: scale(1);
}

.showcase {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    color: #777;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.showcase li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.showcase li small {
    margin-left: 2px;
}

.row {
    display: flex;
}

.screen {
    background-color: #fff;
    height: 70px;
    width: 100%;
    margin: 15px 0;
    transform: rotateX(-45deg);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
}
