#reservation-holder,
#feedback-holder{
    max-width: 1200px;
    background: #fefefe;
    border: 1px solid black;
    border-radius: 4px;
    margin: 1rem auto 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.reservation-card,
.feedback-card{
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    border-radius: 2px;
    color: black;
}

.reservation-card:nth-child(even),
.feedback-card:nth-child(even){
    background: #EEE
}

.reservation-accept, .reservation-deny{
    margin-right: 5px;
}

.reservation-picker{
    max-width: 700px;
    margin: auto;
}

.reservation-picker #foglalas_napja{
    text-align: center;
    width: 75%;
}

.reservation-picker .five-percent-width{
    font-size: 1.5rem;
    width: 5%;
    vertical-align: sub;
    text-align: center;
    display:inline-block;
}

.little-bit-less-than-half-block{
    width: 45%
}
@media (max-width: 600px) {
    .little-bit-less-than-half-block{
        width: 100%
    }
}

.flex{
    display: flex;
}

.justify-content-between{
    justify-content: space-between;
}

.reserving-preview{
    text-align: center;
    font-size: 1.2rem;
    margin-top: 4rem;
}

.m-auto{
    margin: auto;
}

.text-center{
    text-align: center;
}

.send-preview{
    margin-top: 3rem;
}

@media (max-width: 600px) {
    .d-block{
        display: block;
    }
}

.mt-2{
    margin-top: 2rem;
}

.d-none{
    display: none;
}

.p-05{
    padding: 0.5rem;
}

.no-reserving-sign {
    color: white;
    background-color: #f24466;
    padding: 2rem;
    font-size: 1.2rem;
    margin: 2rem;
    border-radius: 5px;
    text-align: center;

}

.feedback-block-wrapper,
.reserving-block-wrapper{
    max-width: 90%;
    margin: auto;
}