/* Content Header - Modern Admin Style */

.content-header-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: none;
  border: none;
}

/* Breadcrumb Modern */
.breadcrumb-modern {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.breadcrumb-modern .breadcrumb-item {
  color: #6c757d;
}

.breadcrumb-modern .breadcrumb-item a {
  color: #3367d6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-modern .breadcrumb-item a:hover {
  color: #2851a3;
  text-decoration: underline;
}

.breadcrumb-modern .breadcrumb-item.active span {
  color: #495057;
  font-weight: 500;
}

.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #adb5bd;
  font-size: 1rem;
  font-weight: 300;
}

/* Page Title */
.page-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  display: flex;
  align-items: center;
}

.page-title i {
  color: #3367d6;
  font-size: 1.25rem;
}

.page-title small {
  font-size: 0.875rem;
  font-weight: 400;
}

/* Header Counter */
.header-counter {
  background: #f1f3f5;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #596882;
  font-weight: 500;
}

.header-counter i {
  color: #3367d6;
}

/* Header Buttons */
.header-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.header-btn i {
  font-size: 0.85rem;
}

.header-btn.btn-primary {
  background-color: #3367d6;
  border-color: #3367d6;
}

.header-btn.btn-primary:hover {
  background-color: #2851a3;
  border-color: #2851a3;
  box-shadow: 0 2px 8px rgba(51, 103, 214, 0.4);
  transform: translateY(-1px);
}

.header-btn.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.header-btn.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
  transform: translateY(-1px);
}

.header-btn.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.header-btn.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 2px 8px rgba(108, 117, 125, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .content-header-card {
    padding: 15px;
  }

  .page-title {
    font-size: 1.25rem;
  }

  .header-btn {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .header-counter {
    display: none;
  }
}

@media (max-width: 576px) {
  .content-header-card .row {
    flex-direction: column;
    gap: 15px;
  }

  .content-header-card .col-auto {
    width: 100%;
    justify-content: flex-start !important;
  }

  .header-btn {
    width: 100%;
    justify-content: center;
  }
}
