.dashboard-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.dashboard-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: #0f172a;
  text-align: center;
}

.dashboard-actions {
  display: grid;
  gap: 0.85rem;
}

.dashboard-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #334155;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  text-align: left;
}

.dashboard-btn:hover {
  background: rgba(248, 250, 252, 0.8);
  border-color: rgba(148, 163, 184, 0.3);
  color: #0f172a;
}

.dashboard-btn:active {
  transform: translateY(0);
}

.dashboard-btn--primary {
  background: #2563eb;
  color: white;
  border-color: transparent;
}

.dashboard-btn--primary:hover {
  background: #1d4ed8;
  color: white;
}

.dashboard-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-btn__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.dashboard-btn[disabled],
.dashboard-btn.is-loading {
  cursor: wait;
  opacity: 0.6;
}

.dashboard-btn[disabled]:hover,
.dashboard-btn.is-loading:hover {
  transform: none;
}

.dashboard-feedback {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  background-color: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.dashboard-feedback--error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.2);
}

.dashboard-feedback--success {
  background-color: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.2);
}

.dashboard-rooms {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.dashboard-rooms__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.dashboard-rooms__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.dashboard-rooms__state {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.65);
}

.dashboard-rooms__state--error {
  color: #b91c1c;
}

.dashboard-rooms__state--empty {
  color: rgba(15, 23, 42, 0.6);
  font-style: italic;
}

.dashboard-rooms__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.dashboard-rooms__item {
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.dashboard-rooms__link {
  display: block;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  font-size: 0.95rem;
}

.dashboard-rooms__item:hover {
  background: rgba(248, 250, 252, 0.9);
  border-color: rgba(148, 163, 184, 0.3);
}
