.aio-bv-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
}

.aio-bv-login,
.aio-bv-section,
.aio-bv-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}

.aio-bv-field {
  margin-bottom: 18px;
}

.aio-bv-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.aio-bv-field input[type="text"],
.aio-bv-field input[type="password"],
.aio-bv-field input[type="number"],
.aio-bv-field input[type="date"],
.aio-bv-field input[type="time"],
.aio-bv-field input[type="datetime-local"],
.aio-bv-field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 15px;
}

.aio-bv-field textarea {
  min-height: 120px;
}

.aio-bv-readonly {
  padding: 10px 12px;
  background: #f7f7f7;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  min-height: 22px;
}

.aio-bv-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.aio-bv-table th,
.aio-bv-table td {
  border: 1px solid #ddd;
  padding: 10px;
  vertical-align: top;
}

.aio-bv-table th {
  background: #f5f5f5;
  font-weight: 700;
}

.aio-bv-new-row {
  background: #fcfcfc;
}

.aio-bv-button {
  display: inline-block;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  background: #2271b1;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.aio-bv-button:hover {
  background: #135e96;
  color: #fff;
}

.aio-bv-logout {
  background: #666;
}

.aio-bv-logout:hover {
  background: #444;
}

.aio-bv-actions {
  margin-top: 24px;
}

.aio-bv-logout-form {
  margin-top: 16px;
}

.aio-bv-message {
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.aio-bv-success {
  background: #e7f7ed;
  border: 1px solid #9bd3ad;
}

.aio-bv-error {
  background: #fdecec;
  border: 1px solid #e0a0a0;
}

@media (max-width: 767px) {
  .aio-bv-wrap {
    padding: 12px;
  }

  .aio-bv-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}