.grid-content-container {
    position: relative;
    justify-self: center;
    top: 500px;
    display: grid;
    gap: 15px;
    grid-template-columns: 180px 180px 180px;
}

.item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 140px;
    border-radius: 15px;
    background-color: rgba(164, 168, 183, 0.879);
    box-sizing: border-box;
    padding: 10px;
    cursor: pointer;
}

.current-day-small {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 50px;
    width: 50px;
    background-color: rgb(48, 93, 125);
    color: white;
    font-size: 18pt;
}

.day-week {
    position: absolute;
    top: 80px;
}