/* ========================
   ERROR CARD
======================== */
.player-error {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 14px;
  margin-bottom: 16px;

  border: 1px solid rgba(198, 169, 107, 0.2);
  border-radius: 8px;

  background: rgba(255, 80, 80, 0.05);

  color: #ffb3b3;


  box-shadow: 0 0 10px rgba(255, 60, 60, 0.15);
}

/* icon */
.player-error__icon {
  line-height: 1;
}

/* content */
.player-error__content {
  display: flex;
  flex-direction: column;
}

.player-error__title {
  font-weight: 600;
  color: #ff6b6b;
}

.player-error__message {
  color: #ffdede;
}
