
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: rgb(254, 246, 236);
    }


.navbar{
    background-color: teal;
    padding: 15px;
    padding-left: 50px;
    font-size: larger;
    color: azure;
    font-weight: 600;
}

.navbar img{
    filter: drop-shadow(4px 6px 1px rgba(0, 0, 0, 0.2));   
    margin-right: 5px; 
}
 
.container{
    padding: 25px;
}

#heading{
    padding: 10px 0px;
    color: coral;
}

hr{
    padding: 1px;
    margin-bottom: 10px;
    /* color: aliceblue; */
    background-color: rgba(255, 255, 255, 0.247);
}

#para{
    padding: 10px 0px;
    font-size: 13px;
}


.note-container{
    padding: 15px;
    height: fit-content;
    width: 25%;
    background-color: bisque;
    border-radius: 10px;
    display: inline-block;
    margin: 20px;
    vertical-align: top;
}

.delbutton{
    padding: 5px;
    background-color: burlywood;
    color: black;
    border-radius: 5px;
    border: 1px solid coral;
}

.popupbutton{
    padding: 10px;
    color: white;
    background-color: teal;
    border-radius: 100%;
    font-size: 25px;
    font-weight: 500;
    width: 50px;
    border: none;
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0px 45px 45px 0px;
}



.popupbutton::before {
  content: attr(title); /* Use the 'title' attribute as the content */
  position: absolute; /* Position the tooltip */
  bottom: 100%; /* Position it above the button */
  left: 50%; /* Center it horizontally */
  transform: translateX(-50%); /* Adjust horizontal centering */
  background-color: rgba(0, 0, 0, 0.7); /* Background color of the tooltip */
  color: white; /* Text color */
  padding: 5px 10px; /* Padding */
  border-radius: 5px; /* Border radius */
  white-space: nowrap; /* Prevent line breaks */
  opacity: 0; /* Initially hidden */
  pointer-events: none; /* Ensure the tooltip doesn't interfere with button clicks */
  transition: opacity 0.3s; /* Add transition effect */
  font-size: 14px;
  margin-bottom: 1px;
}

.popupbutton:hover::before {
  opacity: 1; /* Show the tooltip on hover */
}


.popup-overlay{
    background-color: black;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.8;
    display: none;
}

.popup-box{
    background-color: coral;
    width: 40%;
    padding: 40px;
    border-radius: 10px;
    position: absolute;
    top: 30%;
    left: 30%;
    z-index: 3;
    display: none;
}

.popup-box input{
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid black;
    margin: 5px;
    padding: 5px;
    font-size: 20px;

}

.popup-box textarea{
    width: 100%;
    background-color: transparent;
    border: 2px solid;
    margin: 5px;
    padding: 5px;
    font-size: 20px;
    border-radius: 5px;
}

.popup-box input::placeholder{
    color: rgba(0, 0, 0, 0.486);
}

.popup-box textarea::placeholder{
    color: rgba(0, 0, 0, 0.486);
}

.popup-box input:focus{
    outline: none;
}

.popup-box textarea:focus{
    outline: none;
}

.popup-box button{
    color: rgba(255, 255, 255, 0.829);
    background-color: black;
    padding: 5px;
    border-radius: 5px;
    width: 65px;
    font-weight: 550;
}