.notification-table {
  width: 100%;
  border-collapse: collapse;
}

.notification-table th,
.notification-table td {
  padding: 10px 12px;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

.no-notifications-row td {
  border: none !important;
  padding: 20px 10px;
  font-size: 13px;
  background-color: #fafafa;
}

.notification-row:hover {
  background-color: #f9f9f9;
  transition: background-color 0.2s;
}

.notification-row.new-row {
  background-color: #f2f2f2;
}

.notification-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 12px;
}

.notification-message {
  display: flex;
  align-items: center;
}

.status-icon {
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
  vertical-align: middle;
}

.notification-text-wrapper {
  display: flex;
  align-items: center;
}

.notification-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.notification-user {
  font-weight: bold;
  margin-bottom: 2px;
}

.notification-badge-type {
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 10px;
  margin-right: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: fit-content;
}

/* Vriendschapsbadges */
.badge-friends { background-color: #17a2b8; }
.badge-friends-accept { background-color: #28a745; }
.badge-friends-reject { background-color: #dc3545; }

/* Nieuwe badges uit tweede CSS */
.badge-likes { background-color: #007bff; color: #fff; }
.badge-new_song { background-color: #28a745; color: #fff; }

td.text-center input[type="checkbox"] {
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 767px) {
  .notification-message {
    gap: 6px;
  }
  .notification-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .notification-text {
    flex: 1;
    margin-right: 6px;
  }
  .notification-badge-type {
    margin: 0;
    font-size: 9px;
    padding: 2px 5px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header-container h2 {
    font-size: 16px;
  }
}