@import url("../style.css");

body {
  background-color: #164E42;
}

header {
  text-align: center;
  padding: 20px 0px;
  background-color: #164E42;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 80px;
}


body{
background-color:#164E42 ;
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-evenly; 
align-items: center;
}

.btn{
  color: white;
  font-size: 1.1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 0.3rem;
  background-color: #A2AC82;
  border: none;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}

h1, h2, h3, h4, h5, h6, p{
  margin: 0;
} 
/* Todo Container */
.todo{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 2rem;
  background: #fdfff0;
  padding: 3rem;
  height: 50%;
  width: 50%;
  box-shadow: 0 1rem 1rem rgba(0, 23, 71, 0.15);
  max-width: 30rem;
}

h2{
font-family: 'Nunito', sans-serif;
height: 3rem;
color: #2E2D1D;
text-align: center;
}
.input{
position: relative;
  display: flex; 
}

.input-field{
  width: 100%;
  border: 0.06rem solid #d2d2d2bf;
  border-radius: 0.5rem;
  padding: 1.25rem;
  font-size: 1rem;
}

input[type="text"]::placeholder{
  color: gray
}

.todo-container{
  display: flex;
  gap: 1rem;
}

ul{
  padding: 0;
  margin: 0;
  overflow-y: scroll;
}

li{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.3rem;
}

#todoList p{
display: flex;
  gap: 1rem;
  color: #2E2D1D;
  align-items: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  }

#todoList.disabled{
  color: #8f98a8
}

.disabled{
display: flex;
text-decoration: line-through;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

input[type="checkbox"]::before{
  content: "\2713";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  font-size: 1.7rem;
  text-align: center;
  border: 0.06rem solid #d2d2d2bf;
  border-radius: 50%;
  color: transparent;
}

input[type="checkbox"]:checked::before{
 color: #fdfff0;
  background-color: #5B6D49;
  border: 0.06rem solid #5B6D49;
  border-radius: 50%;
}

.counter{
  border: 0.06rem solid #d2d2d2bf;
}

.counter-container{
  height: 2rem;
  display: flex;
  justify-content: space-between;
  color: gray;
}

.counter-container p {
align-self: center;
}

.counter-container button{
  border: none; 
  background-color: transparent;
  color: gray;
  font-family: 1rem;
}

.footer{
  display: flex;
  gap: 0.7rem;
  color: #fdfff0; 
}

.scroll{
  height: 15rem;
  scrollbar-width: thin;
}

.scroll::-webkit-scrollbar{
  width: 0.6rem;
}

.scroll::-webkit-scrollbar-thumb{
  background-color: #5B6D49 ;
  border-radius: 0.5rem;
}
.scroll::-webkit-scrollbar-track{
  display: none;
  
}

#logo-image {
  width: 150px;
  padding-left: 4rem;
  display: flex;
}

/* .navbar {
  background: #F1F2ED;
  margin: auto;
  padding: 0.5rem 1.5rem;
  margin-left: 100px;
  margin-right: 100px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
} */

.navbar .nav-link, .drop-down li {
  list-style: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer; 
}

.navbar .nav-link:hover, .resources:hover .drop-down {
  display: block;
  background-color: #A2AC82;
  border-radius: 0.5rem;
  transition: 0.3s;
}

.navbar .drop-down {
  position: absolute;
  padding: 0.5rem 0;
  flex-direction: column;
  margin: 0.5rem -0.5rem;
  background: #A2AC82;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  width: 150px;
  display: none;
}

