/* Professional table look & tags */

/* Responsive helpers */
@media (max-width: 576px){
  .col-hide-sm { display:none !important; }
}

/* Table niceties */

.apps-table .table td, 
.apps-table .table th {
  vertical-align: middle;
}

.apps-table .table tbody tr:hover {
  background: rgba(0, 0, 0, .015);
}

/* Actions col stays tight */
.apps-table .actions-col {
  width: 1%;
  white-space: nowrap;
}

/* Icon buttons */
.btn-icon {
  --bs-btn-padding-y: .35rem;
  --bs-btn-padding-x: .45rem;
  --bs-btn-font-size: .9rem;
  border-radius: .5rem;
}

/* Professional tag style */
.tag {
  display: inline-block;
  padding: .25rem .6rem;
  font-size: .78rem;
  border-radius: .375rem;
  border: 1px solid transparent;
  line-height: 1.3;
  font-weight: 500;
  text-transform: capitalize;
}

.tag-default { background: rgba(108,117,125,.08); color: #495057; border-color: rgba(108,117,125,.25); }
.tag-info    { background: rgba(13,202,240,.1);  color: #055160;  border-color: rgba(13,202,240,.25); }
.tag-success { background: rgba(25,135,84,.1);   color: #0f5132;  border-color: rgba(25,135,84,.25); }
.tag-warning { background: rgba(255,193,7,.1);   color: #664d03;  border-color: rgba(255,193,7,.25); }
.tag-error   { background: rgba(220,53,69,.1);   color: #842029;  border-color: rgba(220,53,69,.25); }
.tag-pending { background: rgba(108,117,125,.1); color: #495057;  border-color: rgba(108,117,125,.25); }

/* Sticky header shadow hint (optional) */
.apps-table thead.table-light {
  position: sticky;
  top: 0;
  z-index: 1;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

/* Add to /assets/css/list-table.css for a cleaner dropdown look */
.dropdown-menu-actions .dropdown-item {
  padding: .5rem .75rem;
  border-radius: .5rem;
}
.dropdown-menu-actions .dropdown-item:hover {
  background: rgba(var(--bs-primary-rgb), .08);
}
.dropdown-menu-actions .dropdown-item i {
  font-size: 1rem;
  opacity: .85;
}
.dropdown-menu-actions .dropdown-header {
  padding: .5rem .75rem .25rem;
}
.dropdown-menu-actions .dropdown-item.disabled {
  opacity: .5;
  pointer-events: none;
}