.cip-search-box {
  margin: 0 0 1.5rem;
  padding: 1rem;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  background: #ffffff;
}

.cip-search-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 12px;
  align-items: end;
}

.cip-search-form label {
  display: block;
}

.cip-search-form label span {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #374151;
	    float: left;
    margin-right: 5px;
    text-align: center;
}


.cip-search-form button {
  min-height: 42px;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.cip-results-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}

.cip-search-form select,
.cip-search-form input[type="text"] {
  width: 100%;
  min-height: 42px;
	background: white; !important
	font-weight: normal; !important
	padding: 10px; !important
    border-bottom: 1px solid grey;
    border-radius: 0;
}


.cip-results-table-wrap {
  overflow-x: auto;
}

.cip-results-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.cip-results-table th,
.cip-results-table td {
  border: 1px solid #e5e7eb;
  padding: 10px;
  text-align: left;
  font-size: 14px;
}

.cip-results-table th {
  background: #f9fafb;
}

@media (max-width: 1024px) {
  .cip-search-form {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 640px) {
  .cip-search-form {
    grid-template-columns: 1fr;
  }
}
