/* ========================================
   inSeoul 공통 CSS
   ======================================== */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Color Variables */
:root {
    --primary-color: #5d4037;
    --primary-dark: #4e342e;
    --primary-light: #8d6e63;
    --secondary-color: #a1887f;
    --background: #faf8f5;
    --background-dark: #efebe9;
    --text-color: #5d4037;
    --text-muted: #8d6e63;
    --border-color: #d7ccc8;
    --danger-color: #e53935;
    --danger-dark: #c62828;
    --success-color: #4CAF50;
    --white: #fff;
}

/* ========================================
   공통 헤더
   ======================================== */
.header {
    padding: 8px 40px;
    border-bottom: 1px solid var(--primary-color);
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo svg {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-light);
}

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.header-nav a:hover {
    text-decoration: underline;
}

/* ========================================
   공통 버튼
   ======================================== */
.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--background);
}

.btn-danger {
    background-color: var(--danger-color);
    color: var(--white);
}

.btn-danger:hover {
    background-color: var(--danger-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* ========================================
   공통 폼 스타일
   ======================================== */
.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(93, 64, 55, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* 시간 선택 그룹 */
.time-select-group {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
}

.radio-option:hover {
    border-color: #8d6e63;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.radio-option input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.radio-option:has(input:checked) {
    border-color: var(--primary-color);
    background-color: #faf8f5;
}

.datetime-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d7ccc8;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
}

.datetime-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* 예약 시간 선택기 */
.scheduled-time-picker {
    margin-top: 16px;
    padding: 16px;
    background-color: #faf8f5;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.schedule-picker-row {
    display: flex;
    gap: 16px;
}

.schedule-picker-col {
    flex: 1;
}

.schedule-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #5d4037;
    margin-bottom: 8px;
}

.schedule-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #d7ccc8;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
}

.schedule-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.time-picker-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-select {
    flex: 1;
    padding: 12px 10px;
    border: 2px solid #d7ccc8;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235d4037' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.schedule-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.time-separator {
    font-size: 18px;
    font-weight: 600;
    color: #5d4037;
}

.scheduled-time-picker .form-hint {
    margin-top: 12px;
    margin-bottom: 0;
}

/* 알림 발송 대상 선택 */
.notify-target-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.notify-target-group .radio-option {
    justify-content: flex-start;
    flex: 1;
}

.notify-target-group .target-count {
    margin-left: auto;
    font-size: 13px;
    color: #8d6e63;
    font-weight: 500;
}

/* 빠른 메시지 버튼 */
.quick-message-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.quick-msg-btn {
    padding: 8px 14px;
    background-color: #efebe9;
    border: 1px solid #d7ccc8;
    border-radius: 20px;
    font-size: 13px;
    color: #5d4037;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-msg-btn:hover {
    background-color: #d7ccc8;
}

.quick-msg-btn.active {
    background-color: #5d4037;
    color: #fff;
    border-color: #5d4037;
}

/* ========================================
   공통 모달
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background-color: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* ========================================
   공통 카드
   ======================================== */
.card {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
}

.card-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.card-body {
    padding: 24px;
}

/* ========================================
   공통 토스트
   ======================================== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    z-index: 2000;
    display: none;
}

.toast.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ========================================
   헤더 아이콘 버튼 (수강 내역 등)
   ======================================== */
.header-icon-btn {
    position: relative;
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.header-icon-btn .icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    color: var(--primary-color);
    transition: background-color 0.2s;
    text-decoration: none;
}

.header-icon-btn .icon-btn:hover {
    background-color: var(--background-dark);
}

.teacher-register-btn {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 12px;
    border: 1.5px solid var(--primary-color);
    border-radius: 20px;
    white-space: nowrap;
    margin-right: 8px;
    transition: all 0.2s;
}

.teacher-register-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ========================================
   알림 벨 아이콘
   ======================================== */
.notification-bell {
    position: relative;
    margin-right: 16px;
}

.bell-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: background-color 0.2s;
}

.bell-btn:hover {
    background-color: var(--background-dark);
}

.bell-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background-color: var(--danger-color);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    max-height: 400px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
    overflow: hidden;
}

.notification-dropdown.show {
    display: block;
}

.notification-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
}

.notification-dropdown-header a {
    font-size: 12px;
    font-weight: normal;
    color: var(--primary-light);
    text-decoration: none;
}

.notification-dropdown-header a:hover {
    text-decoration: underline;
}

.notification-dropdown-list {
    max-height: 340px;
    overflow-y: auto;
}

.notification-dropdown-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    padding-right: 40px;
    border-bottom: 1px solid var(--background-dark);
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.notification-dropdown-item:hover {
    background-color: var(--background);
}

.notification-dropdown-item:last-child {
    border-bottom: none;
}

.notification-dropdown-item.unread {
    background-color: #fff8e1;
}

.notification-dropdown-item.cancelled {
    border-left: 3px solid var(--danger-color);
}

.notification-dropdown-item.modified {
    border-left: 3px solid #ff9800;
}

.notification-dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.notification-dropdown-content {
    flex: 1;
    min-width: 0;
}

.notification-dropdown-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-dropdown-message {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-dropdown-time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.notification-dropdown-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.notification-delete-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: none;
    background: #f0f0f0;
    color: #888;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.notification-dropdown-item:hover .notification-delete-btn {
    opacity: 1;
    background: #e0e0e0;
}

.notification-delete-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--danger-color);
}

.notification-dropdown-item.deleting {
    opacity: 0.5;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* ========================================
   공통 뱃지
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-live {
    background-color: var(--danger-color);
    color: var(--white);
}

.badge-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   공통 푸터
   ======================================== */
.footer {
    padding: 30px 40px;
    border-top: 2px solid var(--primary-color);
    background-color: var(--white);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    margin-bottom: 16px;
}

.footer-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 4px 0;
    line-height: 1.6;
}

.footer-info p strong {
    color: var(--text-color);
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 16px 0;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: var(--primary-light);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

@media (max-width: 768px) {
    .footer {
        padding: 24px 20px;
    }

    .footer-info p {
        font-size: 12px;
    }

    .footer-links {
        gap: 16px;
    }
}

/* ========================================
   공통 유틸리티
   ======================================== */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-danger { color: var(--danger-color); }
.text-success { color: var(--success-color); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.hidden { display: none !important; }

/* ========================================
   빈 상태
   ======================================== */
.empty-state {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state-datetime {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8d6e63 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: inline-block;
    min-width: 140px;
}

.empty-state-datetime .datetime-date {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.empty-state-datetime .datetime-time {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* 가격 입력 필드 placeholder 스타일 */
.price-input::placeholder {
    color: rgba(93, 64, 55, 0.4);
}

.price-input::-webkit-input-placeholder {
    color: rgba(93, 64, 55, 0.4);
}

.price-input::-moz-placeholder {
    color: rgba(93, 64, 55, 0.4);
}

.price-input:-ms-input-placeholder {
    color: rgba(93, 64, 55, 0.4);
}

/* ========================================
   로딩 스피너
   ======================================== */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   반응형 - 태블릿
   ======================================== */
@media (max-width: 1024px) {
    .header {
        padding: 14px 24px;
    }

    .modal {
        max-width: 90%;
    }
}

/* ========================================
   반응형 - 모바일 (768px 이하)
   ======================================== */
@media (max-width: 768px) {
    .header {
        padding: 12px 16px;
    }

    .header-nav {
        gap: 12px;
    }

    .btn {
        padding: 10px 16px;
    }

    .form-row {
        flex-direction: column;
    }

    /* 모달 모바일 */
    .modal-overlay {
        padding: 16px;
    }

    .modal {
        max-width: 100%;
        border-radius: 16px;
    }

    .modal-header {
        padding: 16px 20px;
    }

    .modal-title {
        font-size: 17px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 16px 20px;
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
    }

    /* 시간 선택 그룹 */
    .time-select-group {
        flex-direction: column;
        gap: 12px;
    }

    .radio-option {
        padding: 12px 16px;
    }

    /* 예약 시간 선택기 */
    .schedule-picker-row {
        flex-direction: column;
        gap: 12px;
    }

    .time-picker-group {
        flex-wrap: wrap;
    }

    /* 폼 */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        padding: 14px 16px;
    }
}

/* ========================================
   반응형 - 작은 모바일 (480px 이하)
   ======================================== */
@media (max-width: 480px) {
    .header {
        padding: 10px 12px;
    }

    .logo svg {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 18px;
    }

    .teacher-register-btn {
        font-size: 12px;
        padding: 4px 8px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 15px;
    }

    /* 카드 */
    .card-header {
        padding: 14px 16px;
    }

    .card-body {
        padding: 16px;
    }

    /* 푸터 */
    .footer {
        padding: 20px 16px;
    }

    .footer-info p {
        font-size: 11px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .copyright {
        font-size: 11px;
    }

    /* 토스트 */
    .toast {
        left: 16px;
        right: 16px;
        transform: none;
        text-align: center;
    }
}

/* ========================================
   알림 모달
   ======================================== */
.notification-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.notification-modal {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.notification-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.notification-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.notification-modal-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mark-all-read-btn {
    padding: 6px 12px;
    background: var(--background-dark);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-color);
    cursor: pointer;
    transition: background 0.2s;
}

.mark-all-read-btn:hover {
    background: var(--border-color);
}

.notification-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.notification-modal-close:hover {
    background: var(--background-dark);
    color: var(--text-color);
}

.notification-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.notification-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.notification-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.notification-modal-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.notification-modal-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.notification-modal-empty p {
    font-size: 14px;
}

.notification-modal-item {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--background-dark);
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.notification-modal-item:hover {
    background: var(--background);
}

.notification-modal-item:last-child {
    border-bottom: none;
}

.notification-modal-item.unread {
    background: rgba(93, 64, 55, 0.05);
}

.notification-modal-item-icon {
    width: 40px;
    height: 40px;
    background: var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.notification-modal-item-content {
    flex: 1;
    min-width: 0;
}

.notification-modal-item-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 4px;
}

.notification-modal-item-message {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-modal-item-time {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
}

.notification-modal-item-unread-dot {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* 모바일 알림 모달 */
@media (max-width: 768px) {
    .notification-modal {
        width: 95%;
        max-height: 85vh;
    }

    .notification-modal-header {
        padding: 14px 16px;
    }

    .notification-modal-item {
        padding: 12px 16px;
    }
}
