:root {
  --grad-to-left: linear-gradient(to right, #27ae60, #1abc9c);
}

/* Card Kategori */
.category-card {
  border: none;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  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.1);
}
.icon-gradient {
  background: var(--grad-to-left);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.category-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

/* File Card */
.file-card {
  border: none;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.file-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.file-title {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
}
.btn-download {
  background: var(--grad-to-left);
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.75rem;
  transition: background 0.3s ease;
}
.btn-download:hover {
  background: linear-gradient(to right, #1abc9c, #27ae60);
}

/* Tombol Kembali */
.btn-tosca-gradient {
  background: var(--grad-to-left);
  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.2);
}

/* Breadcrumb */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* 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;
}