 body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d0f1a;
  color: white;
}

.my-ui .container {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
}

.my-ui h1  {
  text-align: center;
  color: #ffffff;
}

.my-ui .steps {
  display: flex; 
  justify-content: space-between;
  margin-bottom: 30px;
}

.my-ui .step {
  background-color: #1a1d2d;
  padding: 10px 20px;
  border-radius: 10px;
  color: #aaa;
}

.my-ui .step.active {
  background-color: #3f0e2c;
  color: white;
}

.my-ui .page {
  background-color: #1a1d2d;
  padding: 30px;
  border-radius: 12px;
}

.my-ui label {
  display: block;
  margin-bottom: 8px;
  color: #bbb;
}

.my-ui select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #2b2e3d;
  color: white;
  border: none;
  border-radius: 5px;
}

.my-ui .toggle {
  margin-bottom: 20px;
}

.my-ui .warning {
  color: #ff4d4d;
  font-size: 14px;
}

 button {
  background-color: #ff4d4d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  float: right;
}
.my-ui .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* только 2 колонки */
  gap: 25px;
}


.my-ui .case {
  background-color: #1a1d2d;
  border: 2px solid #2c2f3c;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.my-ui .case.selected {
  border-color: #ff4d4d;
  background-color: #2b2e3d;
}
.my-ui .case:hover {
  border-color: #ff4d4d;
  background-color: #2b2e3d;
}

.my-ui .case h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.my-ui .case p {
  margin: 4px 0;
}

.my-ui .case .desc {
  color: #aaa;
  font-size: 13px;
  margin-top: 8px;
}
#admin .grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.user-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.user-fields input {
  background-color: #1a1d2d;
  color: white;
  border: 1px solid #2c2f3c;
  border-radius: 6px;
  padding: 8px 10px;
}
button:hover {
  cursor: pointer;
  box-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d;
}
.case:hover {
  box-shadow: 0 0 15px #ff4d4d, inset 0 0 5px #ff4d4d;
  transition: 0.3s;
}
.power-rat-banner {
  position: fixed;
  top: 30%;
  left: 20px;
  width: 200px;
  background: #2a2a3b;
  color: white;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  font-family: 'Segoe UI', sans-serif;
  z-index: 999;
  border-left: 5px solid #ff4d4d;
  transition: all 0.3s ease;
}
.power-rat-banner h2 {
  margin-top: 0;
  color: #ff4d4d;
  font-size: 18px;
}
.power-rat-banner p {
  margin: 6px 0;
  font-size: 14px;
  color: #ddd;
}
.power-rat-banner button {
  margin-top: 10px;
  background: #ff4d4d;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 13px;
}
.power-rat-banner button:hover {
  background-color: #ff3333;
}
