@charset "UTF-8";

h2 {
  color: #008b8b;
  text-align: center;
  font-family: 'overpass', sans-serif;
  font-size: 1.3rem;
  font-weight:bold;


  
  letter-spacing: 0.5px;
  margin-bottom: 5px;
   margin-top: 25px;
}


.summary-hr {
  border: none;
  height: 3px;
  width: 150px;
  margin: 10px auto 30px auto;
  background: linear-gradient(to right, #008b8b, #20b2aa);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 139, 139, 0.2);
}



.file-detail-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background:white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: white;
  font-family: 'overpass' sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  backdrop-filter: blur(4px);
}


.detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}


.detail-item {
  background: white;
  padding: 24px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
 
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  color: #fff;
}




.detail-label {
  font-weight: 700;
  color:#008b8b; 
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}


.detail-value {
  font-size: 1.1rem;
  color:black; 
  line-height: 1.5;
  word-wrap: break-word;
  position: relative;
  z-index: 1;
}


.body-content {
  flex: 1 1 100%;
  margin-top: 25px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  overflow-x: auto;
}

.body-content p {
  white-space: pre-line;
  line-height: 1.8;
  color: #1e293b;
  font-size: 1.1rem;
}


/* ========== RESPONSIVE ========== */

@media (min-width: 1280px) {
  .detail-item {
    flex: 1 1 calc(25% - 24px);
  }
}

@media (max-width: 1279px) and (min-width: 1024px) {
  .detail-item {
    flex: 1 1 calc(33.333% - 24px);
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .detail-item {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 767px) {
  .detail-item {
    flex: 1 1 100%;
  }

  .link-container {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 479px) {
  .detail-item {
    padding: 18px;
  }

  .detail-label {
    font-size: 0.95rem;
  }

  .detail-value {
    font-size: 1rem;
  }

  .body-content {
    padding: 16px;
  }

  .link-container a {
    width: 100%;
    text-align: center;
  }
}







.action-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  padding: 20px;
 
  border-radius: 16px;
 
}

.action-links a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.download-link {
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  color: #ffffff;
}

.download-link:hover {
  background: linear-gradient(to right, #2563eb, #1e40af);
  transform: scale(1.05);
}


.back-link {
  background: linear-gradient(to right, #fbbf24, #fcd34d);
  color: #1f2937;
}

.back-link:hover {
  background: linear-gradient(to right, #f59e0b, #facc15);
  transform: scale(1.05);
}










