.container-fcra {
  width: 100%;
  padding-bottom:0px 20px;
min-height:80vh;
}

.page-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
back
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
}

.tab {
  background: none;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #0073e6;
}

.tab.active {
  border-bottom: 2px solid #0073e6;
  font-weight: 600;
}

/* Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* PDF Grid */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pdf-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease, border 0.2s ease;
}

.pdf-card:hover {
  background: #f9f9f9;
  border-color: #ccc;
}

.pdf-icon {
  font-size: 22px;
}
.pdf-icon i {
  font-size: 24px;
  color: #d32f2f; /* clean PDF red */
}

.pdf-name {
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .pdf-grid {
    grid-template-columns: 1fr;
  }
}
