
/* BADGE */
.lsp-img{ position: relative; }
.lsp-badge{
  position:absolute;
  top:6px;
  left:6px;
  padding:3px 8px;
  font-size:11px;
  font-weight:700;
  border-radius:6px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.5px;
  line-height: 1.2;
  pointer-events:none;
  z-index: 2;
}
.lsp-badge-free{ background:#1aa34a; }
.lsp-badge-busy{ background:#d11b1b; }

.live-sidepanel.lsp-embedded{
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  z-index: auto !important;
}
/* FRONT */
.live-sidepanel{
  position: fixed;
  z-index: 99999;
  font-family: Arial, sans-serif;
}

.lsp-title{
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 18px;
  padding: 10px 10px 8px;
  border-bottom: 2px solid #e6e6e6;
  background: #fff;
}

.lsp-viewport{
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  padding: 10px;
}

.lsp-track{ will-change: transform; }

.lsp-item{
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 10px;
  margin: 10px 0;
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
}

.lsp-img img{
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  display:block;
}
.lsp-img-ph{
  width: 90px; height: 90px;
  border-radius: 8px;
  background:#ddd;
}

.lsp-name{ font-weight: 800; font-size: 20px; margin-bottom: 2px; }
.lsp-msg{ font-style: italic; margin-bottom: 6px; font-size: 14px; }
.lsp-msg.free{ color: #1aa34a; }
.lsp-msg.busy{ color: #d11b1b; }

.lsp-line{ font-size: 14px; color: #222; margin-bottom: 6px; }
.lsp-price{ font-size: 16px; }
.lsp-statusbar{
  position: absolute; right: 0; top: 0;
  width: 10px; height: 100%;
  background: #1aa34a;
}
.status-busy .lsp-statusbar{ background:#d11b1b; }
.status-free .lsp-statusbar{ background:#1aa34a; }

}

/* ADMIN */
.lsp-admin-item{
  display:flex;
  gap:16px;
  padding:12px;
  margin:12px 0;
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:10px;
}
.lsp-admin-thumb{ width:180px; }
.lsp-thumb-img{
  width: 160px; height: 160px;
  object-fit: cover;
  border-radius:10px;
  background:#eee;
  display:block;
  margin-bottom:10px;
}
.lsp-admin-fields{ flex:1; }


/* FEATURED */
@keyframes lspPulse {
  0%   { box-shadow: 0 10px 30px rgba(0,0,0,.18); transform: scale(1); }
  50%  { box-shadow: 0 14px 42px rgba(0,0,0,.28); transform: scale(1.01); }
  100% { box-shadow: 0 10px 30px rgba(0,0,0,.18); transform: scale(1); }
}
.lsp-item.lsp-featured{
  background: #ffffff;
  border: 2px solid rgba(209,27,27,.25);
  animation: lspPulse 2.4s ease-in-out infinite;
}
.lsp-item.lsp-featured .lsp-name{
  font-size: 22px;
}
.lsp-item.lsp-featured .lsp-img img,
.lsp-item.lsp-featured .lsp-img-ph{
  width: 96px;
  height: 96px;
}
.lsp-item.lsp-featured{
  grid-template-columns: 96px 1fr;
}
