#areaIndex .noticeBox {
    border: 1px solid firebrick;
}

#areaIndex .noticeHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: firebrick;
    color: #fff;
    padding: 0.5ex 1ex;
}

#areaIndex .noticeHeading {
    font-weight: bold;
}

#areaIndex .noticeControls {
    display: flex;
    align-items: center;
    gap: 1ex;
}

#areaIndex .noticeDots {
    display: flex;
    gap: 0.5ex;
}

#areaIndex .noticeDots .noticeDot {
    display: inline-block;
    width: 1.6ex;
    height: 1.6ex;
    line-height: 1.6ex;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 0.7em;
    text-align: center;
    cursor: pointer;
    border: none;
    padding: 0;
}

#areaIndex .noticeDots .noticeDot.active {
    background-color: #fff;
    color: firebrick;
}

#areaIndex .noticeToggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    line-height: 1;
    padding: 0;
}

#areaIndex .noticeBody {
    padding: 1ex 1em;
    min-height: 3em;
}

#areaIndex .noticeBody .noticeItem {
    display: none;
    color: #333;
}

#areaIndex .noticeBody .noticeItem.active {
    display: block;
}

#areaIndex .noticeBody .noticeTitle {
    display: block;
    font-weight: bold;
}

#areaIndex .noticeBody .noticeDescription {
    display: block;
    margin-top: 0.5ex;
    font-size: 0.9em;
    color: #555;
}

#areaIndex .noticeBox.collapsed .noticeBody {
    display: none;
}
