/* Remove all CSS that might affect width */
.notifications-container {
  margin: 0;
  padding: 0;
}

.notification-item {
  position: relative;
  margin-bottom: 12px;
  padding-left: 16px;
  line-height: 1.4;
}

.notification-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.4;
}

.notification-link {
  text-decoration: none;
  color: #0066cc;
  display: block;
  padding: 4px 0;
}

.notification-link:hover,
.notification-link:focus {
  text-decoration: underline;
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

.notification-link img {
  vertical-align: middle;
  margin-right: 6px;
}

.file-size {
  color: #666;
  font-size: 0.9em;
  margin-right: 6px;
}

.link-text {
  font-weight: normal;
}

/* External link indicator */
.external-indicator {
  font-size: 0.8em;
  color: #666;
  margin-left: 4px;
}

/* More link styles - exactly like original */
.more-link {
  text-decoration: none;
  color: #0066cc;
  font-weight: bold;
  padding: 4px 8px;
}

.more-link:hover {
  text-decoration: underline;
}

.more-indicator {
  font-size: 0.9em;
  margin-left: 4px;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}