.requests-page {
  min-height: 70vh;
  padding: 42px 0 80px;
  background: #fff;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-green-main);
  font-weight: 600;
}

.page-title {
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: 36px;
  color: #030712;
}

.requests-list {
  display: grid;
  gap: 22px;
}

.request-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.request-img {
  width: 130px;
  height: 130px;
  border-radius: 18px;
  object-fit: cover;
  background: #f1f5f9;
}

.request-title {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}

.request-user {
  margin-bottom: 18px;
  color: #344054;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.request-label {
  color: #667085;
  font-size: 14px;
}

.request-value {
  font-weight: 700;
  color: #030712;
}

.request-message {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 16px;
  background: #f8faf7;
}

.request-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.request-btn {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.accept-btn {
  background: #6a9858;
  color: #fff;
}

.reject-btn {
  background: #fff5f5;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.status-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.status-pending {
  background: #fff7ed;
  color: #c2410c;
}

.status-accepted {
  background: #dcfce7;
  color: #15803d;
}

.status-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.loader,
.empty-state {
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  text-align: center;
  color: #667085;
}

@media (max-width: 800px) {
  .request-card {
    grid-template-columns: 1fr;
  }

  .request-img {
    width: 100%;
    height: 230px;
  }

  .request-grid {
    grid-template-columns: 1fr;
  }

  .request-actions {
    grid-template-columns: 1fr;
  }
}

.nav__link--mobile {
  display: none;
}

@media (max-width: 980px) {
  .nav__link--mobile {
    display: block;
  }
}

@media (max-width: 980px) {
  .nav.open {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 18px 35px rgba(16, 24, 40, 0.12);
  }
}