.frequencySelection {
    display: none;
}

/* Alert style */
.note-alert{
    --note-accent: #0f2a43;         /* left stripe color */
    --note-bg: rgba(44, 177, 188, 0.3);             /* pale yellow background */

    background: var(--note-bg);
    border-left: 8px solid var(--note-accent);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--note-accent);
    line-height: 1.45;
}

/* Title (first line) */
.note-alert .note-title{
    font-weight: 700;
    margin: 0 0 6px 0;
}

/* Paragraph spacing */
.note-alert p{
    margin: 0;
}
.note-alert p + p{
    margin-top: 6px;
}
