.calendarGrid { display: grid; gap: 1rem; grid-template-columns: auto auto auto auto auto auto auto; text-align: center; margin-bottom: 2rem; } .monthNavigation { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; } .monthTitle { text-align: center; } .monthNavBtn { background-color: #a7ebb0; border: 1px solid #ccc; border-radius: 10px; padding: 10px; &:hover { background-color: #7dcf8c; } } .calendarCell { border: 2px solid #ccc; padding: 0.5rem; cursor: pointer; height: 3rem; width: 3rem; border-radius: 0.5rem; } .deliveredCell { background-color: #27db60; &:hover { background-color: #1ebd50; } } .pickedUpCell { background-color: #a7ebb0; &:hover { background-color: #7dcf8c; } } .firstWeekPaddingCell { height: 3rem; width: 3rem; } .statusText { font-size: 0.8rem; color: #555; }