/* Background overlay */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/2148502993.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: -1;
}

/* Base */
body, .admin {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  background-color: #182527;
  color: white;
}

/* Navbar */
.navbar {
  background-color: #20cd8d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-right: 10px;
}

.admin-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

/* Container */
.cus-cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
}

/* Card */
.cus {
  background-color: #20cd8d;
  border-radius: 12px;
  padding: 25px 20px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Headings */
h1 {
  font-size: 26px;
  color: #1e2819;
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  font-size: 20px;
  color: #1e2819;
  margin: 20px 0 10px;
  text-align: center;
}

p {
  font-size: 16px;
  color: #1e2819;
  margin: 10px 0 5px;
}

/* Input box */
.hash-codeint {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 6px;
  padding: 8px 12px;
  width: 100%;
  box-sizing: border-box;
}

.hash-codeint input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 15px;
  color: #333;
}

.hash-codeint input::placeholder {
  color: #999;
}

.hash-codeint i {
  margin-left: 10px;
  font-size: 18px;
  color: #999;
}

/* Button */
button {
  margin-top: 15px;
  padding: 8px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid #058b5a;
  background-color: #06bd64;
  color: black;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #058b5a;
  color: white;
}

button:active {
  background-color: #046f48;
  transform: scale(0.98);
}

/* Table */
.med-info-table {
  width: 100%;
  font-size: 15px;
  margin-top: 10px;
  border-collapse: collapse;
}

.med-info-table td {
  padding: 6px 4px;
  vertical-align: top;
  color: #0e1a13;
}

.med-info-table td:first-child {
  font-weight: bold;
  width: 40%;
  text-align: left;
}

.med-info-table td:last-child {
  text-align: left;
}

/* Icon and button style fixes from inline */
.admin-login-btn {
  margin-left: 10px;
}

.qr-icon {
  color: #b8b8b8;
}

.report {
  color: rgb(171, 4, 4);
}