 body{background-color: rgb(252, 250, 250);
    font-family: Open Sans;
    font-size: 16px;
    position: relative;
    height: 100vh;
    font-weight: 400;
}

body::-webkit-scrollbar{
                width: 5px;
            }
            
body::-webkit-scrollbar-track{
                background-color: lavenderblush;
            }
            
body::-webkit-scrollbar-thumb{
                background-color: rgb(48, 236, 111);
            }
            
.take {
    background-color: rgba(165, 245, 86, 0.979) ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    margin: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 8px;
    font-weight: 100;
    color: rgba(3, 3, 3, 0.856);
    font-family: Arial, Helvetica, sans-serif;
  

}    

.btn {
    background-color: #2b188a;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 50px;
    border: rgb(143, 120, 120);
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif;
    color: cornsilk;
    margin-bottom: 6px;

}

.input{
    background-color: rgb(255, 255, 255);
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(0, 0, 0);
    border: rgb(70, 58, 58);
    
}

.select {
    background-color: darkslategray;
    border-radius: 5px;
    padding-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif;
    color: cornsilk;
    margin-bottom: 25px;

}

.delete-btn {
  cursor: pointer;
  background-color: #f31800;
  border-radius: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  padding: 2px 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.list li:hover .delete-btn {
  opacity: 1;
}

.btn:focus,
.delete-btn:focus {
  outline: 0;
}

.list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 40px;
}

.list li {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  color: #333;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 10px;
  margin: 10px 0;
}
.btn:focus,
.delete-btn:focus {
  outline: 0;
}

.list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 40px;
}

.list li {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  color: #333;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 10px;
  margin: 10px 0;
}

.list li.plus {
  border-right: 5px solid #2ecc71;
}

.list li.minus {
  border-right: 5px solid #c0392b;
}

.delete-btn {
  cursor: pointer;
  background-color: #e44e3d;
  border-radius: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  padding: 2px 5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.list li:hover .delete-btn {
  opacity: 1;
}
.refer{
  background-color: rgb(255, 255, 255);
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 2px;
  padding-bottom: 2px;
  color: rgb(7, 7, 7);
  opacity: 10;
}
a:link {
  color: rgb(57, 189, 57);
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color:#2b188a;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color:greenyellow;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: rgb(10, 10, 10);
  background-color: transparent;
  text-decoration: underline;
}
.take a{
  font-size: 20px;
}

button {
  background-color: #60e760c5;
  border-radius: 20px;
  border: 0px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  
}

button:hover{
  color:white;
  background-color: rgba(29, 29, 29, 0.781);
  text-decoration: none;

}
    