/* Premium permissions table feel */
.sn-perms-table tbody tr{
  transition: background-color .15s ease;
}
.sn-perms-table tbody tr:hover{
  background: rgba(30,59,85,.04);
}

/* Keep icon + info + pill aligned */
.sn-access{
  display:inline-flex;
  align-items:center;
  gap:10px;
  line-height:1;
}

/* Fixed-width slots so rows line up perfectly */
.sn-slot{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

.sn-slot i{
  font-size:1.1rem;
  line-height:1;
}

/* Info button */
.sn-info-btn{
  border:0;
  background:transparent;
  padding:0;
  border-radius:999px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.sn-info-btn:focus-visible{
  outline:2px solid rgba(50,122,190,.35);
  outline-offset:2px;
}

/* Access text pill */
.sn-access-pill{
  font-size:.78rem;
  font-weight:600;
  padding:.28rem .6rem;
  border-radius:999px;
  border:1px solid #e6e8eb;
  background:#fff;
  white-space:nowrap;
}

/* Pill tints */
.sn-access-full{
  border-color: rgba(25,135,84,.25);
  background: rgba(25,135,84,.08);
}
.sn-access-limited{
  border-color: rgba(13,202,240,.25);
  background: rgba(13,202,240,.10);
}
.sn-access-restrictions{
  border-color: rgba(255,193,7,.35);
  background: rgba(255,193,7,.12);
}
.sn-access-none{
  border-color: rgba(30,59,85,.20);
  background: rgba(30,59,85,.06);
}

/* Optional: tighten table spacing */
.sn-perms-table td,
.sn-perms-table th{
  padding-top:.85rem;
  padding-bottom:.85rem;
}

/* Role picker premium selectable cards */
.sn-role-option{
  border:1px solid #e6e8eb;
  border-radius:14px;
  padding:12px 14px;
  display:flex;
  gap:12px;
  align-items:center;
  cursor:pointer;
  background:#fff;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.sn-role-option:hover{
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  transform: translateY(-1px);
}
.sn-role-option .form-check-input{
  margin:0;
}
.sn-role-option.is-active{
  border-color: rgba(50,122,190,.35);
  box-shadow:0 10px 22px rgba(50,122,190,.10);
  background: rgba(50,122,190,.04);
}

