*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  "Nunito", sans-serif;
    
}
body{
    background-color: rgb(200, 219, 235);
}

#nav-bar{
    background: white;
    height: 80px;
    display: flex;
    align-items: center;
}

#nav-bar div{
    font-weight: 700;
    color: rgb(128, 128, 128);
    font-size: 30px;
    margin: 10px 20px;
}

#nav-logo{
    width: 60px;
    height: 60px;
    margin: 10px 20px;
}

#center{
    /* border: 1px solid red; */
    height: 250px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

h1{
    font-size: 3rem;
}



#center-time{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

#moods{
    /* border: 1px solid black; */
    width: 75%;
    height: 300px;
    margin: auto;
    margin-top : 25px;
    display: grid;
    gap: 30px;
    grid-template-rows: repeat(4,1fr);
    grid-template-columns: repeat(6,1fr);
}

.mood-item {
    background-color: #f4f4f4;
    border: none;
    padding: 12px 18px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    min-height: 50px;
    white-space: nowrap;
    text-align: center;
    gap: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

.mood-item:hover {
    transform: scale(1.10);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

.mood-item:active {
    transform: scale(0.95);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mood-item {
    animation: fadeIn 1.1s ease-in-out;
}

#happy { background-color: #ffeb3b; }
#sad { background-color: #64b5f6; }
#angry { background-color: #e57373; }
#anxious { background-color: #ff9800; }
#tired { background-color: #90a4ae; }
#confident { background-color: #4caf50; }
#excited { background-color: #ff4081; }
#loved { background-color: #e91e63; }
#relaxed { background-color: #8bc34a; }
#grateful { background-color: #ffb74d; }
#motivated { background-color: #f06292; }
#adventurous { background-color: #673ab7; }
#lonely { background-color: #455a64; }
#overwhelmed { background-color: #ff5722; }
#stressed { background-color: #b71c1c; }
#heartbroken { background-color: #d50000; }
#frustrated { background-color: #757575; }
#meh { background-color: #bdbdbd; }
#thoughtful { background-color: #009688; }
#uncertain { background-color: #607d8b; }
#hopeful { background-color: #43a047; }
#sick { background-color: #00bcd4; }
#productive { background-color: #388e3c; }
#lazy { background-color: #ffcc80; }

#mood-history{
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#header {
    padding: 10px;
    color: #d36c6c;
    font-size: 26px;
    font-family: sans-serif;
    display: flex;
    justify-content: space-between;
  }
  #header button {
    background-color:#92a1d1;
  }
  #calendar-container {
    margin-top: 50px;
    width: 770px;
    
  }
  #week-days {
    width: 100%;
    display: flex;
    color: #247BA0;
  }
  #week-days div {
    width: 190px;
    padding: 10px;
  }
  #calendar {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .day {
    width: 100px;
    padding: 10px;
    height: 100px;
    cursor: pointer;
    box-sizing: border-box;
    background-color: white;
    margin: 5px;
    box-shadow: 0px 0px 3px #CBD4C2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .day:hover {
    background-color: #e8faed;
  }
  
  .day + #currentDay {
    background-color:#02a8fbb1;
  }
  
  .padding {
    cursor: default !important;
    background-color: #fffcff4f !important;
    box-shadow: none !important;
  }

  #back-btn{
    padding: 7px 12px;
    border-radius: 2px;
    border: none;
  }

  #next-btn{
    padding: 7px 12px;
    border-radius: 2px;
    border: none;
  }
  
  