body {
  font-family: "League Spartan", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1d4e89;
}

body.profile-page {
  background-image: url("pexels-nietjuhart-1906440.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 40px;
  background-color: rgba(210, 202, 186, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.profile-title {
  font-size: 2.4rem;
  margin-bottom: 30px;
  text-align: center;
}

.section-title {
  font-size: 1.6rem;
  margin: 40px 0 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 5px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.claim-card {
  background: rgba(255, 255, 255, 0.205);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.301);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.claim-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.486);
}

.claim-card h2 {
  font-size: 1.1rem;
  margin: 5px 0;
}

.claim-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.status-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: bold;
  text-align: center;
}

.status-label.approved {
  background-color: #4F7F8A;
  color: white;
}

.status-label.declined {
  background-color: #9E4F4F;
  color: white;
}

.empty-text {
  font-style: italic;
  color: #555;
  background: rgba(255, 255, 255, 0.7);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.claim-delete-btn {
  margin-top: 10px;
  padding: 10px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.claim-delete-btn.approved {
  background-color: #4F7F8A;
  color: white;
}

.claim-delete-btn.declined {
  background-color: #9E4F4F;
  color: white;
}

.claim-delete-btn:hover {
  opacity: 0.85;
}

/* ====================== MOBILE ====================== */
@media (max-width: 768px) {
  .container {
    margin: 40px 15px;
    padding: 25px;
  }

  .profile-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .claim-card img {
    height: 150px;
  }
}
