body {
  margin: 0;
  font-family: sans-serif;
  color: white;
  background-image: url('STAEDEAN_Team_Background3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

select {
  background-color: rgba(0, 0, 0, 0.7) !important; /* dark translucent */
  color: white !important;                        /* white text */
  border: 1px solid white !important;
  padding: 8px 12px;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.background-container img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

/* Main panel for restore console */
.restore-console {
  background-color: rgba(0, 0, 0, 0.6); /* black transparent */
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: 200px auto 40px auto; /* center + push down */
  color: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

/* Inputs */
label {
  display: block;
  margin-top: 14px;
  font-weight: bold;
}

select, button {
  width: 100%;
  padding: 8px 12px;
  margin-top: 4px;
  margin-bottom: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid white;
  border-radius: 6px;
}

/* Status message */
#status {
  margin-top: 14px;
  font-weight: bold;
  color: lightgreen;
}

/* Table styling */
table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 8px;
  border: 1px solid white;
  text-align: left;
}

th {
  background-color: rgba(255, 255, 255, 0.1);
}
