@import url('/public/assets/tokens.css');

.bvp-body{
  background: var(--bv-bg);
  color: var(--bv-text);
}

.bvp-topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15,23,42,.92);
  border-bottom: 1px solid var(--bv-border);
  backdrop-filter: blur(10px);
}

.bvp-shell{ display:flex; min-height: calc(100vh - 60px); }

.bvp-sidebar{
  width: 280px;
  border-right: 1px solid var(--bv-border);
  background: rgba(30,41,59,.75);
}

.bvp-sidebar a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.bvp-sidebar a:hover{ color: #fff; }

.bvp-navitem{
  display:flex;
  align-items:center;
  gap:.6rem;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.bvp-navitem:hover{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.06);
}

.bvp-navitem.active{
  background: rgba(0,184,148,.16);
  border: 1px solid rgba(0,184,148,.22);
  color:#fff;
}

.bvp-main{ flex: 1; }

.bvp-card{
  background: var(--bv-surface2);
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius);
}

.bvp-pill{
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(248,250,252,.85);
  font-size: .85rem;
}

.bvp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .6rem 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(248,250,252,.92);
  text-decoration: none;
}
.bvp-btn:hover{ background: rgba(255,255,255,.10); color: rgba(248,250,252,.98); }
.bvp-btn:focus{ outline: none; box-shadow: 0 0 0 .25rem rgba(0,184,148,.15); border-color: rgba(0,184,148,.55); }
.bvp-btn:disabled, .bvp-btn[disabled]{ opacity: .55; cursor: not-allowed; }

.bvp-btn-danger{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .6rem 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(239,68,68,.35);
  background: rgba(239,68,68,.12);
  color: rgba(248,250,252,.92);
  text-decoration: none;
}
.bvp-btn-danger:hover{ background: rgba(239,68,68,.18); }
.bvp-btn-danger:focus{ outline: none; box-shadow: 0 0 0 .25rem rgba(239,68,68,.18); }
.bvp-btn-danger:disabled, .bvp-btn-danger[disabled]{ opacity: .55; cursor: not-allowed; }

.bvp-body .form-control{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
}
.bvp-body .form-control::placeholder{ color: rgba(255,255,255,.45); }
.bvp-body .form-control:focus{
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.90);
  border-color: rgba(0,184,148,.55);
  box-shadow: 0 0 0 .25rem rgba(0,184,148,.15);
}

.bvp-lock{
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
}

@media (max-width: 991px){
  .bvp-shell{ flex-direction: column; }
  .bvp-sidebar{ width:100%; }
}
