.error-msg {
    color: red;
    font-size: 12px;
    margin-top: 2px;
    display: none;
}

/* Scoped to prevent overlap */
.lr-search-container {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #0b3b5e;
  padding: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* Card for search */
.lr-search-container .lr-card {
  background: #f9fbfd;
  border: 1px solid #d8e1eb;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 59, 94, 0.1);
  padding: 20px;
  text-align: left;
}

.lr-search-container .lr-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: #0b3b5e;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-left: 4px solid #ff6d2e;
  padding-left: 10px;
}

.lr-search-container .lr-search-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lr-search-container input[type="text"] {
/*  padding: 10px;*/
  font-size: 16px;
  border: 1px solid #ccd7e0;
  border-radius: 6px;
  outline: none;
}

.lr-search-container input[type="text"]:focus {
  border-color: #0b3b5e;
  box-shadow: 0 0 5px rgba(11, 59, 94, 0.3);
}

.lr-search-container button {
  background-color: #ff6d2e;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
/*  padding: 10px 30px;*/
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: center; /* keeps it left-aligned below input */
  width: auto; /* makes width fit text */
  min-width: 100px; /* ensures it’s not too tiny */
}

.lr-search-container button:hover {
  background-color: #e55e20;
}


.lr-search-container .error-msg {
  color: red;
  font-size: 13px;
}

/* LR Details */
.lr-search-container .lr-details {
  margin-top: 25px;
  background: #fff;
  border: 1px solid #d8e1eb;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(11, 59, 94, 0.05);
}

.lr-search-container .lr-details h3 {
  font-size: 18px;
  color: #0b3b5e;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-left: 4px solid #ff6d2e;
  padding-left: 10px;
}

.lr-search-container table {
  width: 100%;
  border-collapse: collapse;
}

.lr-search-container th,
.lr-search-container td {
  padding: 8px 5px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid #eef3f7;
}

.lr-search-container th {
  color: #0b3b5e;
  font-weight: 600;
  width: 35%;
}

.lr-search-container td {
  color: #333;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .lr-search-container th {
    width: 40%;
  }
}
