.pdfbox {
  display: inline-flex; /* instead of flex */
  align-items: center;
  gap: 5px;
  color: gray;
  font-size: 12px;
  margin-left: 5px; /* small gap from title */
}

.pdfbox span.langwrap {
  white-space: nowrap;
}

.pdfbox img {
  height: 16px; /* reduce size slightly to match text */
  width: 16px;
}

/*------Search-----*/
.dropdown-toggle::after {
  border-top: none;
}

.tabledata {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.tabledata a {
  color: #007bff;
  text-decoration: none;
}

.pdfbox {
  align-items: center;
  gap: 5px;
  color: gray;
  font-size: 12px;
}

.pdfbox span.langwrap {
  white-space: nowrap;
}

.pdfbox img {
  height: 20px;
  width: 20px;
}

#master-list .btn-primary {
  padding: 3px 4px;
}

/* ===========================
   Base Layout Styling
=========================== */
.tender-search-section {
  background-color: #f9fafc;
  border-left: 6px solid #002060;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 900px;
  margin: 40px auto;
}

.no-underline {
  text-decoration: none;
}

.tender-search-section h2,
.tender-result-section h4 {
  color: #002060;
  font-weight: 700;
  margin-bottom: 25px;
}

.tender-result-section {
  max-width: 900px;
  margin: 30px auto;
}

/* ===========================
   Form & Input Elements
=========================== */
.form-label {
  color: #002060;
  font-weight: 600;
  font-size: 16px;
}

.form-check-label {
  color: #002060;
  margin-left: 6px;
  margin-right: 25px;
  font-weight: 500;
}

.form-select,
.form-control {
  border-radius: 4px;
  font-size: 15px;
}

.search-control {
  max-width: 300px;
  margin-bottom: 20px;
}

/* ===========================
   Radio Buttons Layout
=========================== */
.radio-group {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.form-check {
  display: flex;
  align-items: center;
}

/* ===========================
   Button Styling
=========================== */
.btn-primary {
  background-color: #002060;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 28px;
  border-radius: 6px;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #001c4d;
}