#notesSection {
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(14px);
    color: #f0f0f0;
    width: 100%;
    margin-top: 20px;
    transition: 0.4s ease;
}

#notesSection h2 {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 1.5rem;
    color: #1dd1a1;
    text-align: center;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    box-shadow: none;
    position: relative;
    top: -29px;
}

.note-input {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#noteInput {
    min-height: 90px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    resize: vertical;
    outline: none;
    transition: 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

#noteInput:focus {
    box-shadow: 0 0 0 2px #506EEC;
}

#saveNote {
    align-self: flex-end;
    padding: 12px 22px;
    font-family: 'LemonMilk', sans-serif;
    background: linear-gradient(135deg, #506EEC, #7d5fff);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(80, 110, 236, 0.4);
    font-family: 'Lemon Milk', sans-serif;
    color: white !important; 
}


#saveNote:hover {
    background: linear-gradient(135deg, #506EEC, #7d5fff);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(125, 95, 255, 0.3);
    color: white;
}

#notesContainer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.note-card {
    background: rgba(255, 255, 255, 0.06);
    border-left: 5px solid #1dd1a1;
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.note-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.note-card .note-text {
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.note-card .note-actions {
    position: absolute;
    top: 10px;
    right: 12px;
}

.note-card button {
    background: transparent;
    color: #ff6b6b;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    margin-left: 8px;
    transition: 0.2s ease;
}

.note-card button:hover {
    color: #ff4d4d;
    transform: scale(1.2);
}