/* 알림 센터 — 헤더 종 아이콘 풀화면 */
.cfl-noti-dim[hidden],
.cfl-noti-center[hidden] {
    display: none !important;
}

.cfl-noti-dim {
    position: fixed;
    inset: 0;
    z-index: 9400;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.cfl-noti-dim.open {
    opacity: 1;
    pointer-events: auto;
}

.cfl-noti-center {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 9410;
    width: min(100vw, 560px);
    max-width: 560px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s;
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
}

.cfl-noti-center.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.cfl-noti-center__head {
    flex-shrink: 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.cfl-noti-center__tabs {
    display: flex;
    flex-shrink: 0;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.cfl-noti-center__tab {
    flex: 1;
    padding: 14px 12px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 700;
    color: #94a3b8;
    cursor: pointer;
}

.cfl-noti-center__tab.active {
    color: #406CB4;
    box-shadow: inset 0 -2px 0 #406CB4;
}

.cfl-noti-center__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cfl-noti-center .noti-list {
    max-height: none;
}

.cfl-noti-center .noti-item {
    background: #fff;
}

.cfl-noti-center .noti-empty {
    padding: 48px 20px;
}

body.cfl-noti-center-open {
    overflow: hidden;
}
