/* static/css/mailsms/notice.css */

.notice-accordion {
    margin-top: 0.75rem;
    border: 0.0625rem solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fafafa;
    cursor: pointer;
}

.notice-accordion:hover {
    background: #f3f4f6;
}

.notice-accordion .sheet-tabs-toolbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    user-select: none;
}

.notice-collapsed-label {
    display: none;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    color: #374151;
}

.notice-accordion.is-collapsed .notice-collapsed-label {
    display: inline-block;
}

.notice-accordion .sheet-tabs-toolbar::after {
    content: "▲";
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    color: #4b5563;
    pointer-events: none;
}

.notice-accordion.is-collapsed .sheet-tabs-toolbar::after {
    content: "▼";
}

.notice-content {
    padding: 0.5rem 0.75rem 0.75rem;
}

.notice-accordion.is-collapsed .notice-content {
    display: none;
}

.notice-body {
    padding: 0.375rem 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #4b5563;
}

.notice-body p {
    margin: 0.125rem 0;
}