body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1;
}

textarea {
    background: transparent;
    border: none;
    resize: none;
    /* color: #000000; */
    border: 1px solid grey;
    padding: 10px;
    line-height: normal;
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset; */
}

header {
    text-align: center;
    background-color: transparent;
    color: black;
    border-radius: 0;
    border-bottom: 10px solid black;
    padding: 60px;
}

.description {
    white-space: pre-wrap;  
}

.time-block {
    text-align: center;
    border-radius: 15px;
}

.row {
    white-space: pre-wrap;
    height: 80px;
    margin: 6px auto;
}

.hour {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #ffffff;
    border-radius: 10px 0px 0px 10px;
    color: #2c2929;
    font-size: 19px;
    border: 1px solid #9d9d9d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.past {
    background-color: #d4d4d4;
    color: rgb(0, 0, 0);
}

.present {
    background-color: #ff938d;
    color: rgb(0, 0, 0);
}

.future {
    background-color: #a4ffa4;
    color: rgb(0, 0, 0);
}

.saveBtn {
    background-color: #ffffff;
    color: #0d6efd;
    justify-content: center;
    align-items: center;
    border: 1px solid grey;
    border-radius: 0px 10px 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.saveBtn i {
    font-size: 28px;
}
.saveBtn i:hover {
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .row {
        height: 160px;
        margin: 10px auto;
    }
    .saveBtn {
        height: 40px;
        border-radius: 0;
        margin-bottom: 20px;
    }
    .hour {
        height: 40px;
        border-radius: 0;
    }
    .container{
        width: 90%;
    }
}