.dropdown-menu {
  min-width: 250px;
  padding: 0;
  border: 1px solid var(--border-color, #e5e7eb);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  background: var(--bg-card, #ffffff);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-header {
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--bs-main-600), var(--bs-main-700));
  color: white;
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.dropdown-header strong {
  font-size: 1.1rem;
  color: white;
}

.dropdown-header small {
  color: rgba(255, 255, 255, 0.85);
}

.dropdown-item {
  padding: 0.875rem 1.25rem;
  transition: all 0.3s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary, #212529);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.125rem 0.5rem;
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: var(--bs-main-25);
  color: var(--bs-main-600);
  transform: translateX(4px);
}

.dropdown-item.text-danger {
  color: #dc3545;
}

.dropdown-item.text-danger:hover {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.dropdown-item i {
  width: 20px;
  font-size: 1.125rem;
  opacity: 0.85;
}

.dropdown-item:hover i {
  opacity: 1;
}

.dropdown-item.active {
  background-color: var(--bs-main-25);
  color: var(--bs-main-600);
  font-weight: 600;
}

.dropdown-item.active i {
  opacity: 1;
}

.dropdown-divider {
  margin: 0.5rem 0;
  border-top: 1px solid var(--border-color, #e9ecef);
}

.dropdown-toggle::after {
  display: none;
}

.info-action img {
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.info-action:hover img {
  border-color: white;
  transform: scale(1.05);
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
}

.notification-dropdown {
  width: 380px;
  max-height: 480px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background: white;
  padding: 0;
  overflow: hidden;
  animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown{


    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }


}

.notification-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.header-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.unread-count-badge {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  line-height: 1;
}

.mark-all-btn {
  background: none;
  border: 1px solid #e2e8f0;
  color: #64748b;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.mark-all-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #475569;
  transform: translateY(-1px);
}

.notification-header-simple {
  padding: 16px 20px;
  border-bottom: none;
  background: transparent;
}

.notification-header-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.01em;
}

.mark-all-btn-simple {
  background: transparent;
  border: none;
  color: #066ac9;
  padding: 6px;
  border-radius: 6px;
  font-size: 18px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.mark-all-btn-simple:hover {
  background: rgba(6, 106, 201, 0.1);
  color: #0557a8;
}

.notifications-container {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.notifications-container::-webkit-scrollbar {
  width: 6px;
}

.notifications-container::-webkit-scrollbar-track {
  background: transparent;
}

.notifications-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.notifications-container::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.notifications-container .notification-item {
  padding: 14px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 8px;
}

.notifications-container .notification-item:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.notifications-container .notification-item.unread {
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.05) 0%, rgba(6, 106, 201, 0.02) 100%);
  border-left: 3px solid #066ac9;
}

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

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
  flex-direction: row;
  text-align: start;
}

.notification-icon .icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.icon-wrapper.success {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
}

.icon-wrapper.danger {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
}

.icon-wrapper.info {
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.15) 0%, rgba(6, 106, 201, 0.25) 100%);
  color: #066ac9;
}

.icon-wrapper.warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  color: #d97706;
}

.icon-wrapper.meeting {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  color: #4338ca;
}

.spinning {
  animation: spin 2s linear infinite;
}

@keyframes spin{


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


}

.notification-text {
  flex: 1;
  min-width: 220px;
}

.notification-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
  line-height: 1.4;
  margin: 0;
  text-align: start;
  display: block;
  word-break: break-word;
}

.notification-message {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 6px;
  margin: 0;
  text-align: start;
  display: block;
  word-break: break-word;
  white-space: normal;
}

.notification-time {
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.unread-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
}

.unread-indicator .dot {
  width: 8px;
  height: 8px;
  background: #066ac9;
  border-radius: 50%;
  display: block;
  animation: pulse 2s infinite;
}

@keyframes pulse{


    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }


}

.empty-state {
  text-align: center;
  padding: 48px 24px;
  max-width: 400px;
  margin: 0 auto;
}

.empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.empty-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  margin: 0 0 10px 0;
}

.empty-message {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  font-weight: 500;
}

.notification-footer {
  padding: 16px 24px;
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.view-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
  text-decoration: none;
}

.bg-success-100 {
  background-color: #dcfce7;
}

.text-success {
  color: #16a34a;
}

.bg-danger-100 {
  background-color: #fee2e2;
}

.text-danger {
  color: #dc2626;
}

.bg-info-100 {
  background-color: #dbeafe;
}

.text-info {
  color: #2563eb;
}

.bg-warning-100 {
  background-color: #fef3c7;
}

.text-warning {
  color: #d97706;
}

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --border-color: #e9ecef;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #9ca3af;
}

[data-theme="dark"] {
  --bg-primary: #0f1419;
  --bg-secondary: #1a1f2e;
  --bg-card: #1e2433;
  --border-color: #374151;
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
}

[data-theme="dark"] .dropdown-menu {
  background-color: var(--bg-card) !important;
  border-color: var(--border-color) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="dark"] .dropdown-item {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .dropdown-item:hover {
  background-color: rgba(var(--bs-main-rgb, 79, 70, 229), 0.15) !important;
  color: var(--bs-main-600, #4f46e5) !important;
}

[data-theme="dark"] .dropdown-item.text-danger {
  color: #f87171 !important;
}

[data-theme="dark"] .dropdown-item.text-danger:hover {
  background-color: rgba(248, 113, 113, 0.15) !important;
  color: #f87171 !important;
}

[data-theme="dark"] .dropdown-header {
  background: linear-gradient(135deg, var(--bs-main-600), var(--bs-main-700)) !important;
}

[data-theme="dark"] .dropdown-header strong {
  color: white !important;
}

[data-theme="dark"] .dropdown-header small {
  color: rgba(255, 255, 255, 0.85) !important;
}

[data-theme="dark"] .dropdown-divider {
  border-color: var(--border-color) !important;
}

[data-theme="dark"] .notification-dropdown {
  background-color: var(--bg-card) !important;
  background: var(--bg-card) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .notification-item.unread {
  background-color: var(--bg-secondary) !important;
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.15) 0%, rgba(6, 106, 201, 0.05) 100%) !important;
  border-left-color: #066ac9 !important;
}

[data-theme="dark"] .notification-item:hover {
  background-color: var(--bg-secondary) !important;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .notification-item .text-neutral-700 {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .notification-item .text-neutral-600 {
  color: var(--text-secondary) !important;
}

[data-theme="dark"] .notification-item .text-muted {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .notification-item .text-neutral-400 {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .notification-item .text-neutral-500 {
  color: var(--text-secondary) !important;
}

[data-theme="dark"] .info-action {
  background-color: var(--bg-secondary) !important;
  border-color: var(--border-color) !important;
  color: var(--text-secondary) !important;
}

[data-theme="dark"] .info-action:hover {
  background-color: #3b82f6 !important;
  border-color: #3b82f6 !important;
  color: white !important;
}

[data-theme="dark"] .dropdown-item-text {
  color: var(--text-secondary) !important;
}

[data-theme="dark"] .text-primary {
  color: #4a9eff !important;
}

[data-theme="dark"] .btn-link {
  color: #3b82f6 !important;
}

[data-theme="dark"] .bg-success-100 {
  background-color: rgba(34, 197, 94, 0.2) !important;
}

[data-theme="dark"] .bg-danger-100 {
  background-color: rgba(239, 68, 68, 0.2) !important;
}

[data-theme="dark"] .bg-info-100 {
  background-color: rgba(59, 130, 246, 0.2) !important;
}

[data-theme="dark"] .bg-warning-100 {
  background-color: rgba(245, 158, 11, 0.2) !important;
}

[data-theme="dark"] .text-success {
  color: #4ade80 !important;
}

[data-theme="dark"] .text-danger {
  color: #f87171 !important;
}

[data-theme="dark"] .text-info {
  color: #60a5fa !important;
}

[data-theme="dark"] .text-warning {
  color: #fbbf24 !important;
}

[data-theme="dark"] .notification-header {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%) !important;
  border-bottom-color: var(--border-color) !important;
}

[data-theme="dark"] .notification-header-simple {
  background: transparent !important;
}

[data-theme="dark"] .notification-header-title {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .mark-all-btn-simple {
  color: #4a9eff !important;
}

[data-theme="dark"] .mark-all-btn-simple:hover {
  background: rgba(74, 158, 255, 0.15) !important;
  color: #66b0ff !important;
}

[data-theme="dark"] .header-title {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .mark-all-btn {
  background: var(--bg-secondary) !important;
  border-color: var(--border-color) !important;
  color: var(--text-secondary) !important;
}

[data-theme="dark"] .mark-all-btn:hover {
  background: var(--bg-primary) !important;
  border-color: #3b82f6 !important;
  color: #3b82f6 !important;
}

[data-theme="dark"] .notification-item {
  border-bottom-color: var(--border-color) !important;
  background: #1e293b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .notification-title {
  color: #f1f5f9;
}

[data-theme="dark"] .notification-message {
  color: #94a3b8;
}

[data-theme="dark"] .notification-time {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .icon-wrapper.success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%) !important;
  color: #4ade80 !important;
}

[data-theme="dark"] .icon-wrapper.danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%) !important;
  color: #f87171 !important;
}

[data-theme="dark"] .icon-wrapper.info {
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.25) 0%, rgba(6, 106, 201, 0.15) 100%) !important;
  color: #4a9eff !important;
}

[data-theme="dark"] .icon-wrapper.warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%) !important;
  color: #fbbf24 !important;
}

[data-theme="dark"] .icon-wrapper.meeting {
  background: linear-gradient(135deg, rgba(67, 56, 202, 0.2) 0%, rgba(67, 56, 202, 0.1) 100%) !important;
  color: #818cf8 !important;
}

[data-theme="dark"] .empty-state .empty-icon {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%) !important;
  color: var(--text-muted) !important;
}

[data-theme="dark"] .empty-title {
  color: #cbd5e1;
}

[data-theme="dark"] .empty-message {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .notification-footer {
  background: var(--bg-secondary) !important;
  border-top-color: var(--border-color) !important;
}

[data-theme="dark"] .view-all-btn {
  background: var(--bg-card) !important;
  border-color: var(--border-color) !important;
  color: #3b82f6 !important;
}

[data-theme="dark"] .view-all-btn:hover {
  background: #3b82f6 !important;
  color: white !important;
  border-color: #3b82f6 !important;
}

.btn-icon.theme-toggle {
  width: 52px;
  height: 52px;
  background: var(--bs-main-25, #f8fafc);
  border: 1px solid var(--bs-neutral-30, #e5e7eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--bs-neutral-500, #6b7280);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 12px;
}

.btn-icon.theme-toggle:hover {
  background: var(--bs-main-600, #4f46e5);
  border-color: var(--bs-main-600, #4f46e5);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-icon.theme-toggle:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.2);
}

[data-theme="dark"] .btn-icon.theme-toggle,
html[data-theme="dark"] .btn-icon.theme-toggle {
  background: #374151 !important;
  border-color: #4b5563 !important;
  color: #d1d5db !important;
}

[data-theme="dark"] .btn-icon.theme-toggle:hover,
html[data-theme="dark"] .btn-icon.theme-toggle:hover {
  background: #4f46e5 !important;
  border-color: #4f46e5 !important;
  color: white !important;
}

.btn-icon.theme-toggle i {
  transition: all 0.3s ease;
}

.btn-icon.theme-toggle.switching {
  animation: themeSwitch 0.6s ease;
}

@keyframes themeSwitch{


    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }


}

html[data-theme="dark"] {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

html[data-theme="dark"] body {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

html[data-theme="dark"] .header {
  background-color: #2d2d2d !important;
  color: #ffffff !important;
}

html[data-theme="dark"] .btn-icon.theme-toggle {
  background-color: #374151 !important;
  border-color: #4b5563 !important;
  color: #d1d5db !important;
}

html[data-theme="light"] {
  background-color: #ffffff !important;
  color: #000000 !important;
}

html[data-theme="light"] body {
  background-color: #ffffff !important;
  color: #000000 !important;
}

html[data-theme="light"] .header {
  background-color: #ffffff !important;
  color: #000000 !important;
}

html[data-theme="light"] .btn-icon.theme-toggle {
  background-color: #f8fafc !important;
  border-color: #e5e7eb !important;
  color: #6b7280 !important;
}

.meeting-dropdown {
  width: 380px;
  max-height: 480px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background: white;
  padding: 0;
  overflow: hidden;
  animation: slideInDown 0.3s ease-out;
}

.meeting-header {
  padding: 16px 20px;
  border-bottom: none;
  background: transparent;
}

.meeting-header .header-title {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.01em;
}

.meeting-count-badge {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  line-height: 1;
}

.view-all-btn-small {
  background: transparent;
  border: none;
  color: #066ac9;
  padding: 6px;
  border-radius: 6px;
  font-size: 18px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 32px;
  height: 32px;
  text-decoration: none;
}

.view-all-btn-small:hover {
  background: rgba(6, 106, 201, 0.1);
  color: #0557a8;
  text-decoration: none;
}

.meetings-container {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.meetings-container::-webkit-scrollbar {
  width: 6px;
}

.meetings-container::-webkit-scrollbar-track {
  background: transparent;
}

.meetings-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.meetings-container::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.meeting-item {
  padding: 14px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 8px;
}

.meeting-item:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.meeting-item.live {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
  border-left: 3px solid #10b981;
}

.meeting-item.upcoming {
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.05) 0%, rgba(6, 106, 201, 0.02) 100%);
  border-left: 3px solid #066ac9;
}

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

.meeting-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
  flex-direction: row;
  text-align: start;
}

.meeting-icon .icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.icon-wrapper.live {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
}

.icon-wrapper.upcoming {
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.15) 0%, rgba(6, 106, 201, 0.25) 100%);
  color: #066ac9;
}

.meeting-text {
  flex: 1;
  min-width: 220px;
}

.meeting-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
  line-height: 1.4;
  margin: 0;
  text-align: start;
  display: block;
  word-break: break-word;
}

.meeting-course {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 6px;
  margin: 0;
  text-align: start;
  display: block;
  word-break: break-word;
  white-space: normal;
}

.meeting-time {
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.live-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
}

.live-indicator .live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.meeting-footer {
  padding: 16px 24px;
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

[data-theme="dark"] .meeting-dropdown {
  background: var(--bg-card) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .meeting-header {
  background: transparent !important;
  border-bottom: none !important;
}

[data-theme="dark"] .meeting-item {
  border-bottom-color: var(--border-color) !important;
}

[data-theme="dark"] .meeting-item:hover {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%) !important;
}

[data-theme="dark"] .meeting-item.live {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%) !important;
  border-left-color: #10b981 !important;
}

[data-theme="dark"] .meeting-item.upcoming {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
  border-left-color: #3b82f6 !important;
}

[data-theme="dark"] .meeting-title {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .meeting-course {
  color: var(--text-secondary) !important;
}

[data-theme="dark"] .meeting-time {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .icon-wrapper.live {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%) !important;
  color: #4ade80 !important;
}

[data-theme="dark"] .icon-wrapper.upcoming {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%) !important;
  color: #60a5fa !important;
}

[data-theme="dark"] .meeting-footer {
  background: var(--bg-secondary) !important;
  border-top-color: var(--border-color) !important;
}

[data-theme="dark"] .view-all-btn-small {
  background: var(--bg-secondary) !important;
  border-color: var(--border-color) !important;
  color: var(--text-secondary) !important;
}

[data-theme="dark"] .view-all-btn-small:hover {
  background: var(--bg-primary) !important;
  border-color: #3b82f6 !important;
  color: #3b82f6 !important;
}

.notifications-page {
  background: #f8f9fa;
  min-height: calc(100vh - 80px);
  padding: 40px 0;
}

.notifications-header-page {
  padding: 0 0 24px 0;
  margin-bottom: 24px;
  background: transparent;
  border: none;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.notifications-page-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  line-height: 1.2;
}

.btn-mark-all-page {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #066ac9;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-mark-all-page:hover {
  background: #0557a8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 106, 201, 0.3);
}

.notifications-header {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: #066ac9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 12px rgba(6, 106, 201, 0.3);
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.stats-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.stat-badge.unread {
  background: rgba(6, 106, 201, 0.1);
  color: #066ac9;
}

.stat-badge.success {
  background: #f0fdf4;
  color: #16a34a;
}

.stat-badge i {
  font-size: 16px;
}

.stat-divider {
  color: #cbd5e1;
  font-weight: 400;
}

.stat-text {
  color: #64748b;
  font-size: 14px;
}

.btn-mark-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #066ac9;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(6, 106, 201, 0.3);
}

.btn-mark-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 106, 201, 0.4);
  background: #0557a8;
}

.btn-mark-all i {
  font-size: 18px;
}

.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.notification-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  opacity: 1;
}

.notification-item.is-unread {
  background: linear-gradient(90deg, rgba(6, 106, 201, 0.05) 0%, #ffffff 20%);
  box-shadow: 0 1px 3px rgba(6, 106, 201, 0.1);
}

.unread-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #066ac9;
}

.notification-inner {
  display: flex;
  gap: 16px;
  padding: 20px;
  padding-left: 24px;
}

.notification-item.is-unread .notification-inner {
  padding-left: 28px;
}

.notification-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.notification-icon.icon-success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}

.notification-icon.icon-danger {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
}

.notification-icon.icon-info {
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.15) 0%, rgba(6, 106, 201, 0.25) 100%);
  color: #066ac9;
}

.notification-icon.icon-warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #d97706;
}

.notification-icon.icon-primary {
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.15) 0%, rgba(6, 106, 201, 0.25) 100%);
  color: #066ac9;
}

.content-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.unread-dot {
  width: 8px;
  height: 8px;
  background: #066ac9;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale{


    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }


}

.notification-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: #f1f5f9;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #444;
  font-weight: 500;
  width: fit-content;
  background-color: #f2f3f6;
  margin-top: 4px;
}

.notification-badge i {
  font-size: 14px;
}

.notification-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.meta-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #94a3b8;
}

.meta-time i {
  font-size: 14px;
}

.meta-actions {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-view {
  background: #066ac9;
  color: white;
}

.btn-view:hover {
  color: white;
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(6, 106, 201, 0.3);
  background: #0557a8;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f6f8;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 16px;
  padding: 6px 8px;
}

.btn-icon:hover {
  background: #e8ebee;
  border-color: #cbd5e1;
  color: #1e293b;
}

.btn-icon.btn-delete:hover {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

.empty-state-wrapper {
  background: white;
  border-radius: 20px;
  padding: 80px 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.notifications-page .custom-pagination {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

.empty-text {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .notifications-page {
  background: #0f172a;
}

[data-theme="dark"] .notifications-header-page {
  background: transparent;
}

[data-theme="dark"] .notifications-page-title {
  color: #f1f5f9;
}

[data-theme="dark"] .btn-mark-all-page {
  background: #066ac9;
  color: white;
}

[data-theme="dark"] .btn-mark-all-page:hover {
  background: #0557a8;
}

[data-theme="dark"] .notifications-header {
  background: #1e293b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .page-title {
  color: #f1f5f9;
}

[data-theme="dark"] .stat-badge.unread {
  background: rgba(6, 106, 201, 0.2);
  color: #4a9eff;
}

[data-theme="dark"] .stat-badge.success {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

[data-theme="dark"] .stat-divider {
  color: #475569;
}

[data-theme="dark"] .stat-text {
  color: #94a3b8;
}

[data-theme="dark"] .notification-item.is-unread {
  background: linear-gradient(90deg, rgba(6, 106, 201, 0.15) 0%, #1e293b 20%);
  box-shadow: 0 1px 3px rgba(6, 106, 201, 0.2);
}

[data-theme="dark"] .notification-badge {
  background: #334155;
  color: #cbd5e1;
}

[data-theme="dark"] .meta-time {
  color: #64748b;
}

[data-theme="dark"] .notification-icon.icon-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(5, 150, 105, 0.25) 100%);
  color: #34d399;
}

[data-theme="dark"] .notification-icon.icon-danger {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.25) 0%, rgba(185, 28, 28, 0.25) 100%);
  color: #f87171;
}

[data-theme="dark"] .notification-icon.icon-info {
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.25) 0%, rgba(6, 106, 201, 0.35) 100%);
  color: #4a9eff;
}

[data-theme="dark"] .notification-icon.icon-warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(217, 119, 6, 0.25) 100%);
  color: #fbbf24;
}

[data-theme="dark"] .notification-icon.icon-primary {
  background: linear-gradient(135deg, rgba(6, 106, 201, 0.25) 0%, rgba(6, 106, 201, 0.35) 100%);
  color: #4a9eff;
}

[data-theme="dark"] .btn-icon {
  background: #334155;
  border-color: #475569;
  color: #94a3b8;
}

[data-theme="dark"] .btn-icon:hover {
  background: #475569;
  border-color: #64748b;
  color: #e2e8f0;
}

[data-theme="dark"] .btn-icon.btn-delete:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.4);
  color: #f87171;
}

[data-theme="dark"] .empty-state-wrapper {
  background: #1e293b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .empty-icon {
  color: #475569;
}

[data-theme="dark"] .empty-text {
  color: #64748b;
}

.notification-body {
  width: 100%;
}

[dir="rtl"] .meta-actions {
  flex-direction: row-reverse;
}

.pagination .page-item.active .page-link {
  background-color: #3b82f6 !important;
  border-color: #3b82f6 !important;
  color: #fff !important;
}

.pagination .page-link {
  color: #333;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.pagination .page-link:hover {
  background-color: #f1f5f9;
  color: #000;
}

@media (max-width: 768px) {
  .dropdown-menu {
    min-width: 200px;
    right: 0 !important;
    left: auto !important;
  }
}

@media (max-width: 768px) {
  .notification-dropdown,
      .meeting-dropdown {
    width: 340px !important;
    max-height: 400px !important;
  }

  .notification-header,
      .meeting-header {
    padding: 16px 20px 12px !important;
  }

  .notifications-container,
      .meetings-container {
    max-height: 280px !important;
  }

  .notification-item,
      .meeting-item {
    padding: 12px 20px !important;
  }

  .notification-icon .icon-wrapper,
      .meeting-icon .icon-wrapper {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
  }

  .notification-title,
      .meeting-title {
    font-size: 13px !important;
  }

  .notification-message,
      .meeting-course {
    font-size: 12px !important;
  }

  .empty-state {
    padding: 32px 20px !important;
  }

  .empty-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 24px !important;
  }
}

@media (max-width: 768px) {
  .notifications-page {
    padding: 20px 0;
  }

  .notifications-header-page {
    padding: 0 0 20px 0;
    margin-bottom: 20px;
  }

  .notifications-page-title {
    font-size: 24px;
  }

  .btn-mark-all-page span {
    display: none;
  }

  .btn-mark-all-page {
    padding: 10px;
    width: 40px;
    height: 40px;
    justify-content: center;
  }

  .btn-mark-all-page i {
    margin: 0 !important;
  }

  .notifications-header {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .header-left {
    gap: 16px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .page-title {
    font-size: 22px;
  }

  .btn-mark-all span {
    display: none;
  }

  .btn-mark-all {
    padding: 12px;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  .notification-inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .notification-item.is-unread .notification-inner {
    padding-left: 16px;
  }

  .notification-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .meta-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .empty-state-wrapper {
    padding: 60px 20px;
  }

  .empty-icon {
    font-size: 60px;
  }

  .empty-title {
    font-size: 20px;
  }

  .empty-text {
    font-size: 14px;
  }
}
