/* Background */
body{
    background-image: linear-gradient(120deg, #09c6f9, #045de9)
  }
  
  /* Dropdown Button */
  .dropbtn {
    background-color: #515d70;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #747e8a;
  }
  
  /* The search field */
  #myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  
  /* The search field when it gets focus/clicked on */
  #myInput:focus {outline: 3px solid #ddd;}
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    left: 50px;
    top: 0px;
    display: inline-block;
    justify-content: center;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 230px;
    border: 1px solid #ddd;
    z-index: 1;
    height: 400px;
    max-height:600px;
    overflow-y:scroll; 
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #dbdbdb}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}

  
h1 {
    font-size: 40px;
    color: rgb(255, 255, 255);
  }
  
    *{
      box-sizing: border-box;
      margin: 1;
      padding: 0;
    }
  
    body{
        font-family: 'Ubuntu', sans-serif;
    }
  
    .container{
      position: relative;
      top: -26px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: auto;
      width: 200%;
      padding: 0px;
    }
  
    h1{
      margin-bottom: 0px;
      color: white;
      text-align: center;
    }
    
    h3{
      margin-bottom: 0px;
      color: white;
    }
  
    /* SCHEDULE DESIGN */
    .schedule__container{
        background: linear-gradient(#f5f7fa, #b8c6db);
        display: flex;
        flex-direction: column;
        padding: 1rem;  
    }
  
    .days__container{
        display: flex;
    }
  
    .corner{
        width: 50px;
        height: 70px;
        margin: 2px;
    }
  
    .day{
        width: 100px; 
        height: 50px;
        color: 	white;
        background-color: #189ad3;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2px;
    }
  
    .part__day{
        display: flex;
    }
  
    .time{
        width: 50px;
        height: 17px;
        color: white;
        background-color: #189ad3;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2px;
        font-size: 9px;
    }
  
    .task{
        background-color: white;
        height: 32px; /* Same as .time height */
        width: 100px;
        margin: 2px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
    }
  
    /* Reset Button */
    .deleteBtn{
        padding: 10px 25px;
        margin-top: 0px;
        margin-left: -37px;
        border: none;
        background-color: white;
        border: solid 2px black;
        border-radius: 5px;
        cursor: pointer;
        text-transform: uppercase;
        outline: none;
        position: absolute;
        top: 0%;
        right: 5%;
    }
  
    .deleteBtn:hover{
        background-color: #eee;
    }
  
    /* Pop up */
    .pop-up__container{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 99;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
    }
  
    .pop-up{
        width: 300px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-color: #00b4d8;
        padding: 15px;
        text-align: center;
        border-radius: 5px;
    }
  
    .btn__container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
  
    .btn__answer{
        margin: 0 20px;
        background-color: white;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }