body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  background: url("../images/carwash.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dark overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* semi-dark overlay */
    z-index: 0;
}

/* Make sure page-wrapper is above the overlay */
.page-wrapper {
    position: relative; /* needed to stay above overlay */
    z-index: 1;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 900px;
    max-width: 95%;
}


.login-box {
  width: 40%;
  padding: 30px;
  background: #fff;
}

.login-box h2 {
  margin-bottom: 20px;
  color: #2c5364;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.login-box button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #2c5364;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.login-box button:hover {
  background: #28a745;
}

.error {
  margin-top: 10px;
  color: red;
}

.info-panel {
  width: 60%;
  padding: 20px;
  overflow-y: auto;
}

.accordion-item {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background: #f5f5f5;
  padding: 12px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 15px;
  font-size: 18px;
}

.accordion-item.open .accordion-header::after {
  content: '-';
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #fff;
}

.accordion-item.open .accordion-content {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  border-bottom: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
