﻿body {
    background-color: black;
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
}

.slot-container {
    display: flex;
    justify-content: center;
    align-items: center;
/*    min-height: 65vh;*/
    min-height: 30vh;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 90vw;
}

.slot {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    font-weight: bold;
    background: white;
    color: black;
    border-radius: 100px;
}

.button-container {
    display: flex;
    text-align: center;
    align-items: center;
    margin-top: 30px;
    flex-direction: column;
}

.quantity-slot {
    display: flex;
    text-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.quantity-slot h3{
    margin-bottom: 0px;
}

.quantity-slot input{
    margin: 0px 10px !important;
}


button {
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 15px;
    margin-left: 5px;
}

.glow {
    /*border: 2px solid red;*/
    /*    box-shadow: 0 0 100px 10px red;*/
    box-shadow: 0 0 100px 10px #0dcaf0;
    transition: box-shadow 0.5s ease-in-out;
}

.btn-close:hover {
    /*pointer-events: none;*/
    all: unset;
}