* {
    font-family: Inter;
    box-sizing: border-box;
}

p, b {
  margin: 0;
  padding: 0;
}

#app-container {
    position: relative;
    width: 412px;
    height: 917px;
    background-color: #000000;
}

#calendar {
    position: absolute;
    top: 150px;
    left: 0;
    width: 412px;
    height: 682px;
    background-color: #DDE9F0;
}

#calendar > * {
    /* so i can keep using figma positioning */
    transform: translate(0px, -150px);
}

#vertical-dividers {
    position: absolute;
    top: 150px;
    left: 24px;
    width: 388px;
    height: 633px;
    display: flex;
    flex-direction: row;
}

#vertical-dividers > * {
    width: 77.6px;
    height: 633px;
    border-left: 1px solid #00000040;
}

#horizontal-dividers {
    position: absolute;
    top: 140px;
    left: 0;
    width: 412px;
    height: 600px;
    padding-left: 2px;
    display: flex;
    flex-direction: column;
}

#horizontal-dividers > * {
    width: 412px;
    height: 50px;
    border-bottom: 1px solid #00000020;
    font-size: 11px;
    color: #214355;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#day-labels {
    position: absolute;
    top: 157px;
    left: 52px;
    width: 328.5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #214355;
    font-size: 24;
}

#calendar-entries > * {
    position: absolute;
    width: 68px;
    height: 74px;
    background-color: #347FA8;
    border-radius: 8px;
    color: #FCFEFF;
    font-size: 12.5px;
    padding: 4px;
}

/* #region calendar entry specifics */
.M {
    left: 29px;
}
.T {
    left: 106px;
}
.W {
    left: 184px;
}
.R {
    left: 262px;
}
.F.c5710 {
    left: 339px;
    top: 568px;
    height: 50px !important;
}
.c5710 {
    top: 289px;
}
.c0170 {
    top: 568px;
    height: 149px !important;
}
.c5050 {
    top: 289px;
}
.c1500 {
    top: 389px;
}
.c5120 {
    top: 477px;
    background-color: #9AAAB2 !important;
}
.c5020 {
    top: 655px;
    background-color: #9AAAB2 !important;
}
/* #endregion calendar entry specifics */



#header-bar {
    position: absolute;
    top: 75px;
    left: 0;
    width: 412px;
    height: 75px;
    background-color: #93B0C0;
    color: #214355;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
    font-size: 24px;
    filter: drop-shadow(0 4px 20px #00000050);
}


#title-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 412px;
    height: 75px;
    padding: 20px;
    color: #DDE9F0;
    background-color: #64879A;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
}

#title-bar .lucide {
    width: 40px;
    height: 40px;
}

#nav-bar {
    position: absolute;
    top: 783px;
    left: 0;
    width: 412px;
    height: 134px;
    background-color: #FCFEFF;
    color: #214355;
    border-radius: 40px 40px 0px 0px;
    padding: 0px 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    filter: drop-shadow(0 -2px 40px #00000020);
}

#nav-bar .lucide {
    width: 40px;
    height: 40px;
}