/* psychics.php */
/* Heart button */
.fav-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 7px 9px;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.fav-heart i { font-size: 16pt; color: #999; }
.fav-heart.favorited i { color: #b100ff; }
.fav-heart:hover { transform: scale(1.03); }

/* Consistent card heights */
.row-live-chat .live-chat-card{
  height: 100%;
  display: flex;
  flex-direction: column;
}
.row-live-chat > div[class*="col-"]{
  display: flex;
  margin-bottom: 30px;
}
.row-live-chat .live-chat-card-img{
  height: 200px;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.row-live-chat .live-chat-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* badge placement — base layout; colors in style.css dark theme */
.row-live-chat .live-chat-card-img .on-line{
  position: absolute;
  z-index: 5;
  white-space: nowrap;
  max-width: calc(100% - 20px);
  transform: none !important;
}

/* body/bottom alignment */
.row-live-chat .live-chat-card-info{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.row-live-chat .live-chat-card-row p{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0 16px;
  min-height: 3.9em;
}
.row-live-chat .live-chat-card-bottom{ margin-top: auto; }

/* Match home card type (index.css) on mobile */
@media (max-width: 767px) {
  .row-live-chat .live-chat-card-img {
    height: 110px;
  }

  .row-live-chat .live-chat-card-info {
    padding: 12px 12px 14px;
  }

  .row-live-chat .live-chat-card-name,
  .row-live-chat .live-chat-card-info h3 a {
    font-size: 0.92rem !important;
  }

  .row-live-chat .live-chat-card-info h3 {
    font-size: 0.8rem !important;
  }

  .row-live-chat .live-chat-card-row p {
    margin: 6px 0 12px;
    min-height: 2.6em;
    font-size: 11px;
    line-height: 1.4;
  }

  .row-live-chat .live-chat-card-bottom .live-chat-card-btn a {
    padding: 9px 10px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .row-live-chat .live-chat-card-img .on-line {
    padding: 4px 8px;
    font-size: 10px;
  }
}

/* Filters */
.sp-filters{
  margin: 0 0 18px 0;
  padding: 14px;
  border-radius: 14px;
  background: #2e275e;
  border: 1px solid rgba(0,0,0,0.06);
}
.sp-filters .form-control, .sp-filters .form-select{
  height: 44px;
}
.sp-filters .btn{
  height: 44px;
}
.sp-filters__actions{
  flex-wrap: wrap;
}
@media (min-width: 768px){
  .sp-filters__actions{
    flex-wrap: nowrap;
  }
}
.sp-filters__count{
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Dark starfield: readable card count + pagination */
.psychics-page .live-chat-card-bottom-text {
  color: #c9c3e8;
}

.psychics-page .psychics-pager {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.psychics-page .psychics-pager__label {
  padding: 0 8px;
  color: #e4deff;
  font-weight: 500;
}

.psychics-page .psychics-pager .btn-outline-secondary {
  color: #ebe6ff;
  border-color: rgba(170, 150, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.psychics-page .psychics-pager .btn-outline-secondary:hover,
.psychics-page .psychics-pager .btn-outline-secondary:focus {
  color: #ffffff;
  border-color: rgba(190, 170, 255, 0.75);
  background: rgba(124, 92, 255, 0.28);
}

.psychics-page .psychics-pager .psychics-pager__disabled {
  opacity: 0.4;
  pointer-events: none;
}
