body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f5f7fa;
  color: #333;
}

/* Контейнер */
.requests-container {
  max-width: 860px;
  margin: 30px auto;
  padding: 15px;
}

/* Одна заявка */
.request-item {
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  transition: box-shadow .2s ease;
}

.request-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Заголовок */
.request-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.request-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.request-id {
  font-size: 14px;
  color: #777;
}

/* Краткие параметры */
.request-meta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.meta-item {
  background: #eef1f5;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #444;
}

/* Описание */
.request-desc {
  margin-top: 15px;
  line-height: 1.45;
  color: #444;
}

/* Автор+дата */
.request-footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 14px;
  flex-wrap: wrap;
}

/* Кнопка */
.request-btn {
  background: #007bff;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.request-btn:hover {
  background: #0066d4;
}

.filter-header {
        background: #eef2ff;
        border: 1px solid #d6dbf5;
        padding: 12px 16px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 600;
    }
    .filter-box {
        background: #f8f9ff;
        border: 1px solid #e3e6f3;
        border-radius: 10px;
        padding: 18px;
        margin-top: 8px;
    }