.form-header{
    display:flex;
    justify-content: flex-end;
}
button#toggleNotes {
    background: #fff;
    position: relative;
    border: 1px solid #fff;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 16px;
}

button#toggleNotes:focus {
    outline: none;
}

.badge-noti-count{
    display:flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top:-5px;
    right: -5px;
    width: 15px;
    max-width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    font-size:10px;
    /* background: #21B101; */
    color: black;
}

.notes-container::-webkit-scrollbar {
    width: 4px;               /* width of the entire scrollbar */
}
.notes-container::-webkit-scrollbar-track {
    background: #cfcfcf;        /* color of the tracking area */
}
.notes-container::-webkit-scrollbar-thumb {
    background-color: #a1a1a1;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 1px solid #a1a1a1;  /* creates padding around scroll thumb */
}

.notes-container{
    display: none;
    position: absolute;
    top: 20px;
    right: 35%;
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid #ddd;
    width: 350px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 5px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 20;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.show {
    display: block;
    transform: scale(1);
    opacity: 1;
}
.hide {
    transform: scale(0);
    opacity: 0;
}

.notes-header {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    background: #fff;
    position:sticky;
    top:-11px;
    width:100%;
}

.notes-list {
    list-style-type: none;
    padding: 0;
}

.notes-list li {
    background-color: #e9ecef;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 5px;
    padding: 10px;
    font-size: 14px;
}

.notes-list li:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 749px) {
    .notes-container {
        width: 90% !important;
        max-height: 450px !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 10%);
    }
}

@media only screen and (max-width: 1024px) {
    .notes-container {
        width: 50%;
        max-height: 350px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-51%, -40%);
    }
}
