﻿@charset "UTF-8";
/* ──────────────────────────────────────────────────────────
   Table helpers  (Bootstrap-like, no dependency)
   klasa-hijerarhija:   .table  →  .table-sm  /  .table-striped
                        .tbl-cms (wrapper + responsive)
────────────────────────────────────────────────────────── */
/* 1. базна таблица  ----------------------------------------------------- */
.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  color: #212529; /* пригушено црно */
}
.table th,
.table td {
  padding: 0.75rem 1rem; /* 12 × 16 px */
  border: 1px solid #dcdcdc; /* светло сива мрежа */
  text-align: left;
  vertical-align: top;
}
.table thead {
  background-color: #f3f4f6; /* светли header */
  font-weight: 600;
}

/* 2. compact варијанта  ------------------------------------------------ */
.table-sm th,
.table-sm td {
  padding: 0.35rem 0.6rem; /* 6 × 10 px */
}

/* 3. zebra-striping  ---------------------------------------------------- */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.035); /* лагана пруга */
}

/* 4. utility margin  ---------------------------------------------------- */
.mb-4 {
  margin-bottom: 1.5rem;
}

/* 24 px – исто као у бутстрапу */
/* 5. специјални wrapper за CMS табеле  --------------------------------- */
.tbl-cms {
  font-size: 0.95rem; /* мало мањи фонт */
  line-height: 1.4;
  /* Responsive fallback – хориз. скрол испод 768 px */
}
@media (max-width: 768px) {
  .tbl-cms {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* опциони мини визуелни „shadow“ на дну скрол-area-е */
  }
  .tbl-cms::-webkit-scrollbar {
    height: 6px;
  }
  .tbl-cms::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 3px;
  }
}
