

/*reset*/
body {
    margin: 0;
    font-family: arial, sans-serif;
    background: #e2e8f0;
}

/* Header layout with flexbox */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: white;
    padding: 14px 16px;
}

.menu {
    position: absolute;
    left: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menuIcon,
.menuIcon::before,
.menuIcon::after {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    content: "";
    position: relative;
}

.menuIcon::before,
.menuIcon::after {
    position: absolute;
    left: 0;
}

.menuIcon::before { top: -10px; }
.menuIcon::after  { top: 10px; }

.menuTab {
    position: fixed;
    background: #e2e8f0;
    width: 300px;
    top: 0; left: 0; bottom: 0;
    transform: translateX(-100%);
    transition: transform .25s ease;
}

.menuTab.active {
    transform: translateX(0);
}

.menuContent {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
}

.options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
    align-items: center;
    gap: 110px;
    padding: 20px;

}

.nWeek {
    width: 120px;
    height: 30px;
    font-size: 16px;
    border-radius: 10px;
}

.lWeek {
    width: 120px;
    height: 30px;
    font-size: 16px;
    border-radius: 10px;
}

.menuDatePicker{
    margin-top: 80px;
    margin-left: 88px;
    font-size: 16px;
    width: 120px;
    height: 30px;
    border-radius: 10px;

}

#closeMenu {
    position: absolute;
    font-size: 30px;
    width: 22px;
    margin-top: 15px;
    margin-left: 20px;
    background: none;
    border: none;
    cursor: pointer;
}
/* Centered title */
.title {
    margin: 0;
    font-size: 35px;
    font-weight: 600;
}

.dateSelector {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    margin: 30px;
    gap: 20px;
}

.date {
    font-size: 20px;
    background: none;
    border: none;
}

.today {
    display: flex;
    color: #0f172a;
    font-size: 20px;
    background: none;
    border: none;
}

.inputContainer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    background: whitesmoke;
    border-radius: 20px;
    padding-left: 10px;
    width: 400px;
    height: 50px;
}

.input {
    font-size: 23px;
    border: none;
    outline: none;
    background: none;
    color: #0f172a;
}

.register {
    font-size: 15px;
    width: 60px;
    height: 25px;
    border-radius: 13px;
    border: 2px solid black;
    cursor: pointer;
    background: #0f172a;
    color: white;
    margin-right: 1px;
    margin-top: auto;
    margin-bottom: auto;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 425px;
    width: 600px;
    margin: 0 auto;
    background: whitesmoke;
    border: 6px solid #0f172a;
    border-radius: 20px;
}

.event {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 26px;
    padding: 0;
    margin: 5px;
    max-height: 350px;
    overflow-y: auto;
}

.topRowList {
    display: flex;
}

.clearAll{
    color: #0f172a;
    font-size: 20px;
    border-radius: 20px;
    width: 120px;
    margin-top: 5px;
    margin-left: 10px;
    background: #e2e8f0;
}

.numEvent {
    line-height: 1.5;
    color: #0f172a;
    font-size: 18px;
    border-radius: 20px;
    width: 120px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: 10px;
    background: #e2e8f0;
    border: 2px solid #0f172a;
    padding-left: 20px;
}
.event li {
    line-height: 1.5;
    display: flex;
    padding: 10px 5px;
    border: 3px solid #0f172a;
    border-radius: 15px;
    height: 30px;
    width: 550px;
    background: #e2e8f0;
}

.delEvent {
    background: #0f172a;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 20px;
}

.text {
    margin-left: 10px;
    margin-right: auto;
    font-size: 20px;
}

.pinEvent {
    background: none;
    color: white;
    border: black solid 1px;
    font-size: 15px;
    border-radius: 20px;
    margin-right: 8px;
}

.doneEvent {
    background: #0f172a;
    color: white;
    border: none;
    font-size: 15px;
    border-radius: 20px;
}

.markDone {
    text-decoration: line-through;
    text-decoration-color: red;
    color: grey;
}

.markPin {
    background: red;
}

body.invert {
    filter: invert(1);
}


