/* request-document.css */

/* 資料請求固有のスタイル */
.request-list-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #0067ce;
  text-align: center;
}

.request-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.request-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
}

.request-item-thumbnail {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-right: 30px;
  border-radius: 5px;
}

.request-item-info {
  flex: 1;
}

.request-item-title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  text-decoration: none;
  line-height: 1.5;
}

.request-item-title:hover {
  color: #0067ce;
}

.remove-button {
  background: #ff4444;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.remove-button:hover {
  background: #cc0000;
}

.no-documents {
  text-align: center;
  margin: 40px 0;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

/* レスポンシブ対応 */
@media screen and (min-width: 768px) {
  .request-list-item {
    padding: 30px;
    margin-bottom: 30px;
  }

  .request-item-thumbnail {
    width: 120px;
    height: 120px;
    margin-right: 30px;
  }

  .request-item-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .remove-button {
    padding: 10px 30px;
    font-size: 16px;
  }

  .request-list-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .request-list-item {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 20px;
  }

  .request-item-thumbnail {
    width: 100px;
    height: 100px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .request-item-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .remove-button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    text-align: center;
  }

  .request-list-title {
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 10px;
  }

  .no-documents {
    font-size: 16px;
    margin: 30px 0;
  }
}
