/*********Form Label and Input****************/
label{
    font-weight: 600;
    color: var(--black-color);
}
input{
    padding: 12px 14px;
    background: var(--guyabano-white);
    border-radius: 5px;
    border: 1px solid var(--light-silver);
    font-size: 15px;
}

/*********Form Fields****************/
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}
.password-toggle-icon {
    position: absolute;
    top: 52%;
    right: 3%;
}
.fa{
    cursor: pointer;
}

/*==================All Button CSS==================*/

/*******Login Button********/
a.primary-btn {
    background: var(--fluorescent-red);
    border: 1px solid var(--fluorescent-red);
    padding: 16px;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    border-radius: 5px;
    width: -webkit-fill-available;
    align-items: center;
    display: flex;
    justify-content: center;
}

/*button.primary-btn {
    background: var(--fluorescent-red);
    border: 1px solid var(--fluorescent-red);
    padding: 16px;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    border-radius: 5px;
    width: -webkit-fill-available;
    align-items: center;
    display: flex;
    justify-content: center;
}

button.small-btn {
    padding: 8px;
    font-size: 14px;
    width: fit-content;
    font-weight: 400;
    text-align: center;
}*/

/*button.primary-btn.small-btn.note-btn.addnote-popup {
    background: var(--fluorescent-red);
    border: 1px solid var(--fluorescent-red);
    color: var(--white-color);
    border-radius: 5px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 8px 24px;
    font-size: 14px;
    width: fit-content;
    font-weight: 400;
    text-align: center;
}
*/

    a.small-btn {
        padding: 8px;
        font-size: 14px;
        width: fit-content;
        font-weight: 400;
        text-align: center;
    }
a.cancel-btn {
    border: 1px solid var(--black-color);
    border-radius: 5px;
}
.btn-with-icon {
    gap: 4px;
    display: flex;
    align-items: center;
}
.black-btn {
    background: var(--black-color);
    border-radius: 5px;
    color: var(--white-color);
}
/*==================All Button CSS End Here==================*/


/******Dropdown List***********/
.dropdown {
    position: relative;
    width: 134px;
}
.dropdown-btn {
    padding: 9px 12px;
    gap: 12px;
    font-size: 16px;
    background: var(--alice-blue);
    border: 1px solid var(--gainsboro-color);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.selected-month {
    flex: 1;
}
.dropdown-btn i {
    transition: transform 0.3s ease-in-out;
}
.dropdown.active .dropdown-btn i {
    transform: rotate(180deg);
}
.dropdown-content {
    position: absolute;
    width: fit-content;
    background: var(--alice-blue);
    border: 1px solid var(--gainsboro-color);
    border-radius: 6px;
    margin-top: 16px;
    list-style: none;
    padding: 0;
    display: none;
    margin-bottom: 0;
    padding: 12px;
    z-index: 11;
    font-size: 13px;
}
.dropdown-content li {
    padding: 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 6px;
}
.dropdown-content li:last-child{
    margin-bottom: 0px;
}
.dropdown-content li:hover {
    background: var(--mercury-color);
    border-radius: 4px;
}

/************ Search Box******************/
.search-container {
    position: relative;
}
.search-input {
    width: -webkit-fill-available;
    padding: 10px 10px 10px 40px;
    outline: none;
    background: var(--white-color);
    font-size: 14px;
}
.search-icon {
    position: absolute;
    top: 48%;
    left: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

/**********Popup CSS*****************/
.note-popup-section, .note-list-popup {
    position: fixed;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0;
    transform: scale(0);
    z-index: -1;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
    .note-popup-section.active, .note-list-popup.active {
        transform: scale(1);
        opacity: 1;
        z-index: 11;
    }
.dashboard-right-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 52, 52, 0.5);
    display: none;
    z-index: 10;
}
.add-note-popup, .note-list-popup {
    align-items: center;
    padding: 22px 16px;
    background: var(--white-color);
    border-radius: 8px;
    border: 1px solid var(--light-grey);
    position: absolute;
    width: 545px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    height: fit-content;
}
textarea {
    width: -webkit-fill-available;
    padding: 12px 15px;
    height: 148px;
    border-radius: 8px;
    border: 1px solid var(--gainsboro-color);
    font-size: 16px;
}

/****note-list-popup*******/
.note-list-popup .notes-section {
    background: transparent;
    border: 0;
    padding: 0;
    align-items: center;
}

.note-list-popup .all-notes {
    padding: 20px 0;
    border: 1px solid var(--light-grey);
    border-left: none;
    border-right: none;
}

.notes-popup-icon {
    cursor: pointer;
}

.note-list-popup {
    position: fixed;
}