.new-note-btn {
    position: fixed;
    bottom: 20px; /* Distance from bottom */
    right: 20px; /* Distance from right */
    width: 60px;
    height: 60px;
    background-color: var(--select-color); /* Button background color */
    border-radius: 50%; /* Makes it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
    z-index: 4 !important;
}

.new-note-btn {
    color: #fff; /* Text color */
    font-size: 32px;
    font-weight: bold;
    text-decoration: none; /* Remove underline */
}

.new-note-btn:hover {
    background-color: var(--select-color); /* Darker color on hover */
    text-decoration: none;
}

.new-note-btn:hover {
    text-decoration: none;
}