.search-section {
  margin-bottom: 20px;
  padding: 20px;
  background: #f7fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.search-grid {
  display: flex;
  gap: 15px;
  align-items: end;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  padding: 10px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: #fff;
  min-width: 150px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4299e1;
}

.btn-group {
  display: flex;
  align-items: flex-end;
}

.btn-search {
  padding: 10px 24px;
  background: #4299e1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-search:hover {
  background: #3182ce;
}

.action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #edf2f7;
  border-radius: 8px;
  margin-bottom: 20px;
}

.select-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #2d3748;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.selected-count {
  font-size: 0.9rem;
  color: #4299e1;
  font-weight: 600;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-approve {
  background: #48bb78;
  color: #fff;
}

.btn-approve:hover {
  background: #38a169;
}

.btn-delete {
  background: #e53e3e;
  color: #fff;
}

.btn-delete:hover {
  background: #c53030;
}

.table-container {
  overflow-x: auto;
  margin-bottom: 20px;
}

.voucher-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.voucher-table th {
  padding: 14px 12px;
  text-align: center;
  font-weight: 600;
  color: #2d3748;
  background: #f7fafc;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}

.voucher-table td {
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
  color: #4a5568;
}

.voucher-table tbody tr:hover {
  background: #f7fafc;
}

.check-col {
  width: 60px;
}

.voucher-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.amount-cell {
  text-align: right !important;
  font-family: 'Consolas', monospace;
  font-weight: 600;
  color: #2d3748;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.pending {
  background: #fef3c7;
  color: #92400e;
}

.status-badge.approved {
  background: #d1fae5;
  color: #065f46;
}

.info-text {
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
  padding: 15px;
  background: #f7fafc;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .search-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .action-bar {
    flex-direction: column;
    gap: 15px;
  }

  .select-info {
    width: 100%;
    justify-content: space-between;
  }

  .action-buttons {
    width: 100%;
  }

  .action-buttons .btn {
    flex: 1;
  }
}
