/* styles,css override */
.flexBox {
    padding-bottom: 5em;
}

.flexItem {
    border: none;
    margin-bottom: 0;
}

.homeText {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    text-align: center; /* Center text within the container */
    font-style: italic;
    font-size: small;
}

.redLine {
    width: 100%;
    margin: 0px;
    padding: 0px;
    color: rgb(152, 16, 16);
}

.homeText p {
    width: 80%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

hr {
    width: 80%;
}


h1 {
    font-size: 2.8em;
}


.flexChild h1 {
    text-align: center;
}

.flexChild p {
    font-size: x-large;
}

.flexItem {
    margin-top: 0px;
    padding-top: 0px;
}

hr {
        border: 3px solid; /* Adjust the thickness by changing the border width */

}


/* styles,css override */




.week-view {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* Adjusted for 6 columns */
    grid-template-rows: auto;
    gap: 1px;
    width: 75%;
    font-size: 25px;
    margin: auto;
    margin-top: 35px;
    margin-bottom: 35px;
}

.hour-cell {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    box-sizing: border-box;
}
.hour-cell:nth-child(7n+1), /* Monday */
.hour-cell:nth-child(7n+3), /* Wednesday */
.hour-cell:nth-child(7n+5),  /* Friday */
.hour-cell:nth-child(7n+7)  {
    background-color: #a51c1c64;
}


.time-label {
    grid-column: 1;
    grid-row: span 7;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    border: 1px solid #ccc;
   
}

.notice {
    text-align: center;
}

.no_date {
    margin: 0px auto;
float: none;
display: table;
}

@media (max-width: 1370px) {
    .week-view {
        width: 85%;
        font-size: 17px;
        grid-template-columns: repeat(7, 1fr);
        
        gap:0;
    }
    
    .hour-cell {
        padding: 15px;
    }
}

@media (max-width: 1360px) {
    .week-view {
        width: 90%;
        font-size: 7px;
        grid-template-columns: 40px repeat(5, 1fr) auto auto;
        grid-template-columns: repeat(7, 1fr);
        margin: auto;
        gap:0;
    }
    
    .hour-cell {
        padding: 4px;
    }
}