#vacation-wrap .search-box {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 1rem;
}

#vacation-wrap .search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

#vacation-wrap .search-field {
  display: flex;
  flex-direction: column;
}

#vacation-wrap .search-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

#vacation-wrap .search-input-wrapper {
  position: relative;
}

#vacation-wrap .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

#vacation-wrap .search-input {
  width: 100%;
  padding: 0.625rem 0.625rem 0.625rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
}

#vacation-wrap .search-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#vacation-wrap .search-select {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background-color: #fff;
  outline: none;
  transition: all 0.2s;
  cursor: pointer;
}

#vacation-wrap .search-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#vacation-wrap .search-select:disabled {
  background-color: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}

#vacation-wrap .category-section {
  margin-bottom: 2rem;
}

#vacation-wrap .table-container {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  /* border-radius: 0.5rem; */
  overflow: hidden;
}

#vacation-wrap .table-wrapper {
  overflow-x: auto;
}

#vacation-wrap table {
  width: 100%;
  border-collapse: collapse;
}

#vacation-wrap thead {
  background-color: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}

#vacation-wrap th {
  padding: 5px 10px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

#vacation-wrap th:nth-child(2) {
  text-align: left;
}

#vacation-wrap tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s;
}

#vacation-wrap tbody tr.delay {
  background-color: #fef2f2;
}

#vacation-wrap tbody tr.no-delay {
  background-color: #fff;
}

#vacation-wrap td {
  /* padding: 0.75rem 1rem; */
  padding: 10px 10px;;
  font-size: 0.875rem;
  color: #374151;
  text-align: center;
}

#vacation-wrap td:nth-child(1) {
  text-align: left;
  color: #111827;
}

#vacation-wrap td:nth-child(2) {
  text-align: left;
  color: #111827;
}

#vacation-wrap .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid;
  font-size: 0.75rem;
  font-weight: 600;
}

#vacation-wrap .badge-delay {
  background-color: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}

#vacation-wrap .badge-no-delay {
  background-color: #d1fae5;
  border-color: #6ee7b7;
  color: #065f46;
}

#vacation-wrap .badge-icon {
  width: 1rem;
  height: 1rem;
}

#vacation-wrap .empty-state {
  padding: 2rem 1rem;
  text-align: center;
  color: #6b7280;
}

#vacation-wrap .footer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

#vacation-wrap .footer p {
  margin-bottom: 0.25rem;
}