/* =========================================================
   SEARCH ROW
   ========================================================= */
.search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* Search box wrapper */
.search-box {
  position: relative;
  flex: 1;
}

.search-box i.fa-search,
.search-box i.fa {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  font-size: 14px;
}

.search-box input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

/* New button */
.new-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #007bff;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.new-btn:hover {
  background: #005fcc;
}
