/* notifications.css */
body {
  background: #f5f7fa;
}

.friend-request-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.friend-request-item img {
  width: 48px;
  height: 48px;
  border-radius:50%;
  object-fit: cover;
  flex-shrink:0;
}

.friend-request-info {
  flex:1;
}

.friend-request-buttons {
  display:flex;
  gap:8px;
  margin-top:6px;
}

.friend-request-buttons button {
  padding:6px 14px;
  border-radius:8px;
  font-size:.85rem;
  font-weight:600;
  border:none;
  cursor:pointer;
  transition: background .2s;
}

.friend-request-buttons .accept-btn {
  background: #4caf50;
  color:#fff;
}

.friend-request-buttons .reject-btn {
  background: #f44336;
  color:#fff;
}

.empty-state {
  padding: 40px;
  text-align:center;
  color: #666;
  font-size:1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  margin-top: 20px;
}


.accept-btn, .reject-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.accept-btn {
  background-color: #4caf50;
  color: white;
  margin-right: 8px;
}

.reject-btn {
  background-color: #f44336;
  color: white;
}

.accept-btn:hover {
  background-color: #45a049;
}

.reject-btn:hover {
  background-color: #d32f2f;
}

