/* ============================================
   3) KARTY – PRO NAVIGACI
============================================ */

.card-modern {
  background: white;
  border-radius: 26px;
  padding: 18px;
  margin-bottom: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-row { display: flex; gap: 14px; }

.card-number {
  width: 48px;
  height: 78px;
  background: #1e73ff;
  color: white;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 700;
  display: flex; justify-content: center; align-items: center;
}

.card-title { font-size: 18px; font-weight: 700; }
.card-sub   { font-size: 17px; font-weight: 600; }
.card-desc  { font-size: 15px; color: #777; }

.card-actions { display: flex; gap: 10px; margin-top: 14px; }

.card-icon-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid #dadada;
  background: #fafafa;
  display: flex; justify-content: center; align-items: center;
}

.card-icon-btn.delete i { color: #d9534f; }
.card-icon-btn.refresh i { color: #28a745; }

.badge-blue {
  background: #1e88e5;
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 6px;
}


.tab-btn.active .badge-blue,
.tab-btn.active .badge-grey {
  transform: scale(1.1);
  transition: 0.15s;
}

