/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 30 2026 | 09:52:34 */
.griglia-cartomanti {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  transition: opacity 0.4s ease;
}

.griglia-cartomanti.refreshing {
  opacity: 0.3;
}

.box-cartomante {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 12px 16px;
  border-radius: 999px;
  background-color: #111;
  color: #fff;
  box-sizing: border-box;
  transition: all 0.3s ease;
  overflow: hidden;
}

.cartomante-avatar {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}

.cartomante-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.cartomante-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  text-align: left;
}

.box-cartomante strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stato-label {
  display: block;
  margin-top: 5px;
  font-size: 0.95rem;
  font-weight: 700;
  color: inherit;
}

.box-cartomante small {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  color: inherit;
}

/* ONLINE */
.stato-disponibile {
  background-color: rgba(0, 255, 102, 0.12);
  border: 2px solid #00cc55;
  color: #00cc55;
  box-shadow:
    0 0 18px rgba(0, 204, 85, 0.45),
    inset 0 0 24px rgba(0, 204, 85, 0.18);
}

/* OCCUPATO */
.stato-occupata {
  background-color: rgba(255, 0, 0, 0.12);
  border: 2px solid #cc0000;
  color: #ff4444;
  box-shadow:
    0 0 18px rgba(204, 0, 0, 0.45),
    inset 0 0 24px rgba(204, 0, 0, 0.18);
}

/* PAUSA */
.stato-pausa {
  background-color: rgba(0, 170, 255, 0.12);
  border: 2px solid #00aaff;
  color: #00aaff;
  box-shadow:
    0 0 18px rgba(0, 170, 255, 0.45),
    inset 0 0 24px rgba(0, 170, 255, 0.18);
}

/* OFFLINE */
.stato-offline {
  background-color: rgba(136, 136, 136, 0.12);
  border: 2px solid #888888;
  color: #aaaaaa;
  box-shadow:
    0 0 12px rgba(136, 136, 136, 0.25),
    inset 0 0 18px rgba(136, 136, 136, 0.12);
}

/* IN ATTESA */
.stato-inattesa {
  background-color: rgba(255, 165, 0, 0.12);
  border: 2px solid #ffa500;
  color: #ffa500;
  box-shadow:
    0 0 18px rgba(255, 165, 0, 0.45),
    inset 0 0 24px rgba(255, 165, 0, 0.18);
}

/* MOBILE */
@media (max-width: 768px) {
  .griglia-cartomanti {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .box-cartomante {
    min-height: 78px;
    padding: 10px 13px;
    gap: 12px;
  }

  .cartomante-avatar {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .box-cartomante strong {
    font-size: 0.95rem;
  }

  .stato-label {
    font-size: 0.9rem;
  }
}