@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

*{
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

body{ 
    user-select: none;
    touch-action: manipulation; 
    background-color: #f5f6f7;
}

a{
    text-decoration: none;
}

button{
    border: none;
    outline: none;
}

.font-inter{
    font-family: 'Inter', sans-serif;
}

.font-poppins{
    font-family: 'Poppins', sans-serif;
}

.container{
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.container-flex{
    width: 100%;
    height: 100vh;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container-content{
    border-radius: 20px 20px 20px 20px;
    padding-bottom: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    overflow: hidden;
}

.form-header{
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    background-color: #80adb6;
}

.form-div{
    padding: 10px;
    padding-top: 5px;
    border-radius: 7px;
    margin-bottom: 10px;
    background-color: #F7F8FA;
}

.form-div label{
    display: inline-block;
    font-size: 15px;
    color: #1C1B1F; 
    margin-bottom: 5px;
}

.form-input{
    outline: none;
    border: 1px solid #d7d7d7;
    border-radius: 7px;
    width: 100%;
    font-size: 15px;
    padding: 12px 5px;
}

.form-input::placeholder{ 
    font-size: 15px;
    font-weight: 500;
    color: #7D7D7D;
}

.form-btn{
    width: 100%;
    font-size: 15px;
    border-radius: 10px;
    padding: 11.25px 0;
    background-color: #80adb6;
    color: #fff;
}

.form-btn:hover{
    cursor: pointer;
}

.err{
    display:block;
    color: red;
}

.note-id{
    outline: none;
    width: 100px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    padding: 8px;
    font-size: 15px;
}

.note-sub{
    border: none;
    border-radius: 5px;
    padding: 9px 12px;
    font-size: 14px;
    background-color: dodgerblue;
    color: #fff;
}

.get-note{
    margin: 50px 0 35px 0;
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notes-btn{
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 15px;
    background-color: #80adb6;
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: darksalmon;
}

.nav-links{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #333;
}

.link{
    padding: 10px;
}

.link a{
    font-size: 17px;
    color: #fff;
}

.link:hover{
    background-color: #fff;
}

.link:hover a{
    color: #333;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: left;
  padding: 20px 5px;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.fa-check {
  color: green;
}

.fa-remove {
  color: red;
}

.fa-minus{
    color: gray;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    transition: background-color .3s;
}

.pagination a.active {
    background-color: dodgerblue;
    color: white;
}

.pagination a:hover:not(.active) {background-color: #ddd;}