/* Notification Overlay Styles */
.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.notification-modal {
  position: relative;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  animation: slideIn 0.3s ease-out;
}

.notification-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background-color: #f0f0f0;
  color: #333;
  transform: scale(1.1);
}

.notification-content {
  padding: 20px;
}

.notification-item {
  display: block;
}

.notification-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.notification-link:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.notification-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.notification-text {
  text-align: center;
}

.notification-text h3 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.notification-category {
  display: inline-block;
  background-color: #FF8925;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .notification-modal {
    width: 95%;
    margin: 20px;
  }
  
  .notification-text h3 {
    font-size: 1.2rem;
  }
  
  .notification-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .notification-content {
    padding: 15px;
  }
  
  .notification-text h3 {
    font-size: 1.1rem;
  }
  
  .notification-category {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
}

/* Hide notification when closed */
.notification-overlay.hidden {
  display: none !important;
}