:root {
  --tosca-gradient: linear-gradient(to right, #27ae60, #1abc9c);
}

/* Breadcrumb umum */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* ============================= */
/*       KATEGORI CARD GRID      */
/* ============================= */
.category-card {
  background: var(--tosca-gradient);
  border: none;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* ============================= */
/*          LIST FILE CARD       */
/* ============================= */
.file-card {
  border: 1px solid #e6faf4;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.file-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.file-card .card-body {
  padding: 1rem 1.5rem;
}

/* Icon dan teks gradasi */
.text-gradient {
  background: var(--tosca-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Judul file */
.file-title {
  font-weight: 600;
  color: #333;
}

/* Tombol download (kanan) */
.file-card i.bi-download {
  transition: transform 0.3s ease;
}
.file-card:hover i.bi-download {
  transform: translateX(4px);
}

/* ============================= */
/*      TOMBOL KEMBALI TOGLIA    */
/* ============================= */
.btn-tosca-gradient {
  background: var(--tosca-gradient);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 50px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.btn-tosca-gradient:hover {
  background: linear-gradient(to right, #1abc9c, #27ae60);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}


/* Custom Breadcrumb Separator */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
}

/* Breadcrumb container styling */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Breadcrumb list styling */
.custom-breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 0.95rem;
}

/* Link item style */
.custom-breadcrumb .breadcrumb-item a {
  color: #1abc9c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #138f75;
  text-decoration: underline;
}

/* Active item style */
.custom-breadcrumb .breadcrumb-item.active {
  color: #333;
  font-weight: 600;
}

/* Pastikan report-card sudah punya transition */
.report-card {
  border-radius: 1rem;
  border: 1px solid #e0f2f1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efek hover: sedikit terangkat & shadow lebih tegas */
.report-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}
