.subscription-notifications,
.subscription-notifications-preview,
.subscription-notifications-full {
  margin: 0 0 100px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}

.notifications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.notifications-header h3 {
  margin: 0;
  color: #003057;
  font-size: 1.5em;
}

.notifications-header .view-all {
  color: #003057;
  text-decoration: none;
  font-size: 0.9em;
  padding: 5px 10px;
  border: 1px solid #003057;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.notifications-header .view-all:hover {
  background: #003057;
  color: #fff;
}

.notification {
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  background: #efefef;
  transition: all 0.3s ease;
}

.notification.unread {
}

.notification.read {
  opacity: 0.8;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.notification-header h4 {
  margin: 0;
  color: #003057;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.notification-date {
  color: #8f8f8f;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}

.notification-content {
    
  color: #333;
  line-height: 1.4;
}

.notification-actions {
  display: none;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}

.notification-actions .button {
  background-color: #003057;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.notification-actions .button:hover {
  background-color: #004785;
}

.delete-notification {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 0.9em;
  padding: 8px;
  transition: color 0.3s ease;
}

.delete-notification:hover {
  color: #d32f2f;
}

/* Notification count badge in menu */
.woocommerce-MyAccount-navigation-link--notifications .notification-count {
  background: #003057;
  color: #fff;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.8em;
  margin-left: 5px;
}

/* Empty notifications message */
.no-notifications {
  text-align: center;
  color: #666;
  padding: 30px;
  font-style: italic;
}

/* Preview specific styles */
.subscription-notifications-preview .notification:last-child {
  margin-bottom: 0;
}

.subscription-notifications-preview .notification {
  padding: 12px;
}

.subscription-notifications-preview .notification-content {
  margin-bottom: 0;
}
