.add_note{
    position: absolute;
    left: 95%;
    top: 12%;
    color: var(--text-dark);
}

.note_table{
    display: flex;   
    flex-wrap: wrap; 
    justify-content: center;
    }


.note_link{
    width: 300px;
    display: flex;
    margin: 20px;
    text-decoration: none;
}

.note_table_title{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    color: var(--text-dark);
}

.note_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(235, 247, 212);
    border-radius: 10px;
    width: inherit;
    height: 150px;
    transition: 0.5s;
    overflow: hidden;
    border: 1px solid var(--text-dark);
    
}

.note_item:hover{
    transform:translateY(-10px);
    transition:all.25s  ease-in;

}

.note_item:hover ::after{
    transform:translateY(10px);
    transition:all.25s  ease-in;
}

.note_title{
    text-decoration: none;
}

.note_intro{
    display: flex;
    height: inherit;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.note_picture{
    width: 50px;
    height: 50px;
}

.note_empty{
    color: var(--text-dark);
}

.add_data{
    padding-top: 20px;
    color: var(--text-link);
}
.add_note{
    position: absolute;
    left: 95%;
    padding-top: 30px;
    color: var(--text-dark);
}

.note_table{
    display: flex;   
    flex-wrap: wrap; 
    justify-content: center;
    }


.note_link{
    width: 300px;
    display: flex;
    margin: 20px;
    text-decoration: none;
}

.note_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(235, 247, 212);
    border-radius: 10px;
    width: inherit;
    height: 150px;
    transition: 0.5s;
    overflow: hidden;
    
}

.note_item:hover{
    transform:translateY(-10px);
    transition:all.25s  ease-in;

}

.note_item:hover ::after{
    transform:translateY(10px);
    transition:all.25s  ease-in;
}

.note_title{
    text-decoration: none;
}

.note_intro{
    display: flex;
    height: inherit;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.page_number_active {
    color: red;
    background: var(--menu-background);
    margin-left:8px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
}

.page_number{
    background: var(--menu-background);
    margin-left: 8px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
}

.page_btn{
    background: var(--menu-background);
    margin-left: 10px;
    padding: 10px;
    border-radius: 10px;

}

.note_picture{
    width: 50px;
}

.note_empty{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.note_empty_font{
    padding: 20px;
}

.note_empty_icon{
    width: 100px;
    height: 100px;
}


@media (max-width:600px){
    .page_number_active {
        color: red;
        background: var(--menu-background);
        margin-left: 5px;
        padding: 5px;
        border-radius: 5px;
        text-decoration: none;
    }
    
    .page_number{
        background: var(--menu-background);
        margin-left: 5px;
        padding: 5px;
        border-radius: 5px;
        text-decoration: none;
    }
    
    .page_btn{
        background: var(--menu-background);
        margin-left: 5px;
        padding: 5px;
        border-radius: 5px;
        text-decoration: none;
    }
}