@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e2e8f0;
}

* p {
    word-wrap: break-word;
    font-family: 'Nunito', sans-serif;
}
a {
    color: black;
}

.card {
    border-radius: 15px;
}
.nav-link {
    font-size: 1.4rem;
}
/* TICKET */
.ticket {
    height: auto;
    min-height: 90px;
    border-radius: 10px;
    border: 2px solid grey;
    box-shadow: 4px 3px 8px 1px #969696;
    margin-top: 25px;
    display: flex;
}
.ticket.red {
    background: tomato;


}
.ticket.yellow {
    background:  #ffff99;
}
.ticket.green {
    background: #80ff80;
}


/* TICKET MENÜSOR */
.m_row {
    height: auto;
    margin-top: 25px;
    display: flex;
    border-bottom: 3px solid grey;
    font-weight: bold;
    margin-bottom: -15px;

}
.ticket p, .m_row p{
    width: 18%;
    margin: auto 0;
    text-align: center;
}

.m_row p {
    font-weight: bold;
}

#ticket_container > div:last-child{
    margin-bottom: 30px;
  }

.shadow {
    box-shadow: 8px 3px 8px 1px #969696;
    -webkit-box-shadow: 4px 3px 8px 1px #969696;
}

.cal_day {
    width: 14%;
    height: auto;

}
.cal_day.clickable {
    cursor: pointer;
}
.cal_day.occupied {
    background: #D2B7D2;
}


.arrow {
    font-size: 1.4rem;
    position: absolute;
}
.arrow.left {
    left: 10px;
    top: 10px;
}
.arrow.right {
    right: 10px;
    top: 10px;
}

/* TELEFON */
@media screen and (max-width: 800px) {
    .ticket p, .m_row p {
        font-size: 10px;
    }

}
