* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: #122033;
  background: radial-gradient(circle at 0% 0%, #f3f7ff, #eef3fb 50%, #e9edf5);
}

.card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(8, 28, 66, 0.08);
}

.meta {
  color: #5b6980;
}

.error {
  margin-bottom: 12px;
  padding: 10px 12px;
  color: #86181d;
  background: #fdecee;
  border: 1px solid #f6c5cc;
  border-radius: 10px;
  font-size: 14px;
}

.info {
  margin-bottom: 12px;
  padding: 10px 12px;
  color: #0f4f3f;
  background: #ebfbf6;
  border: 1px solid #b6ecdb;
  border-radius: 10px;
  font-size: 14px;
}

button,
.btn {
  border: 0;
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

button,
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #2d6bff, #1f4fd9);
  text-decoration: none;
  display: inline-block;
}

.btn.danger {
  text-decoration: none;
  color: #fff;
  background: #d63d4d;
}

button.secondary {
  margin-top: 10px;
  background: #e8edf6;
  color: #18304f;
}

.btn-outline {
  background: transparent;
  color: #1a2d4a;
  border: 2px solid #c5d0e0;
  text-decoration: none;
}

.btn-outline:hover {
  background: #e8edf6;
  border-color: #1a2d4a;
  color: #1a2d4a;
}

.actions-nav-item-btn {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  padding: 12px 16px;
  border: none;
  background: none;
  color: inherit;
}

