.room {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.room-header {
  width: 100%;
  min-height: 87px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.stats-container {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--primary--light);
  padding: 16px 32px;
  border-radius: 12px;
  border: 1px solid var(--primary);

  .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    &.verdict .value {
      color: var(--primary);
      font-size: 2.5rem;
    }
  }
  .label {
    font-size: 0.8rem;
    color: var(--primary--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
  }
  .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary--dark);
  }
  .divider {
    width: 1px;
    height: 40px;
    background: var(--primary);
    opacity: 0.3;
  }
}
.room-subheader {
  display: flex;
  justify-content: space-between;
}
.voting-area {
  margin-left: 180px;
  flex: 1;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 42px 0 0;
}
.voting-area-wrapper {
  display: flex;
}
@media screen and (max-width: 768px) {
  .voting-area-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .voting-area {
    margin: 0;

    gap: 10px;
  }
  .room-subheader {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

.spectators {
  width: 180px;
}
