html{
    background-color: #eef6fe;
    font-family:  Plus Jakarta Sans, sans-serif;
    color: #1e1e1e;
    max-width: 100%;
    max-height:100vh;
    /* overflow: hidden; */
}

::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
  }
  
  /* Customize the thumb (handle) of the scrollbar */
  ::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-box-shadow: none;
    background-color: #9e9e9e;
  }
  
  /* Customize the track (the scrollbar itself) */
  ::-webkit-scrollbar-track {
    background-color: #e3e3e3;
    border-radius: 8px;
  }
  
body{
    padding:20px 30px;
    max-height: 100%;
    
}


.settings{
    display: block;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: black;
}

h1{
    font-weight: 100;
    font-size: 28px;
}


.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 300,
'GRAD' -25,
'opsz' 24
}

.main-setting-move {
    display: flex;
    justify-content:space-between;
}

.setting-center{
display: flex;
justify-content: center;
align-items: center;
}

.switch-notes{
    display: flex;
    user-select: none;

}

.switch-notes{
    background-color: #e7e7ff;
    outline: 3px transparent;
    border-radius: 4px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size:14px;
    font-weight: 500;
    padding: 3px 10px;
    height: 40px;
    width: 210px;
    border: 0px transparent;
}

.switch{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.switch-notes-center{
    display: flex;
    align-items: center;
}

#notes-inactive{
background-color: #dadaff;
cursor:not-allowed;
}

.buttons-to-switch{
display: flex;
align-items: center;
justify-content: center;
margin: 0; 
gap: 5px;     
background-color: #c3c3ff;
outline: 3px transparent;
border-radius: 4px;
font-family: Plus Jakarta Sans, sans-serif;
font-size:14px;
font-weight: 500;
padding: 0px 10px;
height: 80%;
width: 100%;
border: 0px transparent;        
cursor: pointer;
}

.switch button:hover{
outline: 3px solid rgb(204, 200, 255,0.9);
transition: ease-in-out 0.1s;
border: 0px transparent;

}

.notes-warning{
display: flex;
justify-content: center;
align-items: center;
position:fixed;
left: 280px;
top: 38px;
background-color: rgb(223, 223, 254,0.8);
padding: 2px 10px;
border-radius: 4px;
animation: notes-warning-ani 0.5s 1;
visibility: hidden;
}

@keyframes notes-warning-ani {

0%{
    transform:scale(1.06);
}

100%{
    transform:scale(1);
}
}

.notes-warning p{
text-align: center;
padding-bottom:3px;
border-radius: 8px;
margin: 0;
font-size: 16px;
font-weight: 500;
font-family:Plus Jakarta Sans, sans-serif ;
}


.buttons-to-switch span{
color: rgb(38, 38, 38);
}

.main-settings{
    background-color: #e7e7ff;
    display: inline-flex;
    font-size: small;
    align-items: center;
    justify-content: center;
    padding: 3px;
    max-height: 35px;
    margin: 0;
    border-radius:6px;
    user-select: none;
    cursor: pointer;
    box-sizing: border-box;
    border: 3px solid transparent;
    margin: 0;
}

.main-settings:hover{
    background-color: rgba(221, 219, 255, 0.9);
    border: 3px solid rgb(204, 200, 255);
    transition: ease-in-out 0.2s;
}

.logo-and-name img{
    width: 35px;
    height: 36px;
}

.logo-and-name{
    user-select: none;
}

.bar{
    display: flex;
    flex-direction: column;
}

.logo-and-name{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 160px;
}

.parent-forms{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 85vh;
    padding: 2  0px 0px;
    box-sizing: border-box;
    margin-top: 25px;
}

.today,.week,.month{
    width: 33.33%;
    padding: 0px 10px ;
    border-right: 1px dotted rgba(0,0,0,0.3);
}

.week {
padding: 0px 20px;
}

.month{
    display: flex;
    flex-direction: column;  
    padding: 0px !important;
}

.month-real{
    height: 50%;
    padding: 0px 20px;
}

.quote{
    height: 50%;
    padding: 0px 20px;
    border-top: 1px dotted rgba(0,0,0,0.2);
}

/* Important */
.input-styling{
    outline: none;
    background-color: transparent;
    border: 2px solid #555555;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 10px;
    width: 350px;
    margin-top: 5px;
}

.input-styling:active{
    border: 2px solid #212121;
}

#quotes-font-setting{
    line-height: 48px;
    margin: 30px 0px;
}

li{
font-size: 18px;  
padding: 5px;  
}

#today-ul,#week-ul{
height: 65vh; 
overflow-y: auto;
}