/* in-app-notifications.css - 앱 내 알림 스타일 */
.in-app-notification-container {
    position: fixed;
    top: 16px;
    right: 16px;
    left: 16px;
    z-index: 8000;
    display: flex;
    flex-direction: column;
    pointer-events: none;
  }
  
  /* 토스트 알림 스타일 */
  .toast-notification {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: auto;
    overflow: hidden;
    max-width: 100%;
  }
  
  .toast-notification.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .toast-notification.hide {
    transform: translateY(-20px);
    opacity: 0;
  }
  
  .toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .toast-icon i {
    font-size: 20px;
    color: #2196f3;
  }
  
  .toast-notification[data-type="like"] .toast-icon i {
    color: #e91e63;
  }
  
  .toast-notification[data-type="comment"] .toast-icon i {
    color: #4caf50;
  }
  
  .toast-notification[data-type="follow"] .toast-icon i {
    color: #9c27b0;
  }
  
  .toast-notification[data-type="mention"] .toast-icon i {
    color: #ff9800;
  }
  
  .toast-content {
    flex: 1;
    min-width: 0;
  }
  
  .toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
  }
  
  .toast-message {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .toast-close {
    background: none;
    border: none;
    padding: 4px;
    margin-left: 8px;
    font-size: 18px;
    color: #999;
    cursor: pointer;
  }
  
  /* 바텀 시트 알림 스타일 */
  .bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9000;
    display: flex;
    align-items: flex-end;
  }
  
  .notification-bottom-sheet {
    background-color: white;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-height: 80vh;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .notification-bottom-sheet.show {
    transform: translateY(0);
  }
  
  .bottom-sheet-header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
  }
  
  .bottom-sheet-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  
  .bottom-sheet-close {
    background: none;
    border: none;
    font-size: 20px;
    padding: 4px;
    cursor: pointer;
  }
  
  .notification-list {
    overflow-y: auto;
    flex: 1;
    padding: 8px 0;
  }
  
  .notification-item {
    padding: 16px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .notification-item:active {
    background-color: #f5f5f5;
  }
  
  .notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .notification-icon i {
    font-size: 20px;
    color: #2196f3;
  }
  
  .notification-item[data-type="like"] .notification-icon i {
    color: #e91e63;
  }
  
  .notification-item[data-type="comment"] .notification-icon i {
    color: #4caf50;
  }
  
  .notification-item[data-type="follow"] .notification-icon i {
    color: #9c27b0;
  }
  
  .notification-item[data-type="mention"] .notification-icon i {
    color: #ff9800;
  }
  
  .notification-content {
    flex: 1;
  }
  
  .notification-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
  }
  
  .notification-time {
    font-size: 12px;
    color: #999;
  }
  
  .notification-badge {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2196f3;
    position: absolute;
    top: 16px;
    right: 16px;
  }
  
  .notification-item.unread {
    background-color: rgba(33, 150, 243, 0.05);
  }
  
  .notification-empty {
    padding: 32px 16px;
    text-align: center;
  }
  
  .empty-icon {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 16px;
  }
  
  .notification-empty p {
    color: #999;
    margin: 0;
  }
  
  .mark-all-read-btn {
    margin: 16px;
    padding: 12px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    color: #2196f3;
    cursor: pointer;
  }
  
  .mark-all-read-btn:active {
    background-color: #e0e0e0;
  }