body {
  font-family: Arial, sans-serif;
  background: #000000 !important;
  margin: 0;
}

.navbar {
  background: #303030 !important;
  color: white !important;
  a,
  button {
    color: white !important;
  }
  button {
    border-color: #fff !important;
  }
}

.header {
  background-color: rgba(52, 58, 64, 0.9);
  color: white;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1;
}
.header h1 {
  margin: 0;
}
.filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  margin: 20px auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgb(34, 34, 34);
}

.form-label {
  color: #fff !important;
}
.footer {
  background-color: #212529;
  color: white;
  text-align: center;
  padding: 15px;
  bottom: 0;
  width: 100%;
}
/* Стилі для чекбоксів та радіо-кнопок */
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-options label {
  margin-right: 10px;
  color: #fff;
}
/* Додаткові стилі */
@media (max-width: 768px) {
  .filter-container {
    flex-direction: column;
    align-items: center;
  }
  .filter-group {
    width: 100%;
    max-width: 400px;
  }
  .filter-container button {
    width: 100%;
  }
}

.filter-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 180px;
  gap: 10px;
}

.searchButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: max-content;
  align-self: flex-end;
  svg {
    height: 20px;
  }
}

.form-label {
  margin-bottom: 5px !important;
  font-size: 14px;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 56px - 58px);
  width: 90%;
}

.addRecruter-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  margin: 20px auto 10px;
}

.login-form {
  padding: 20px;
  margin: 20px auto;
  background: rgb(34, 34, 34);
  border-radius: 6px;
  max-width: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  h2 {
    text-align: center;
    color: #fff;
  }
  button,
  a {
    margin-top: 10px;
    width: 100%;
  }
}

.vscomp-toggle-button {
  border-radius: 0.375rem;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
}

.table-wrapper {
  padding: 10px;
  border-radius: 16px;
  background: rgb(34, 34, 34);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: auto;
  table {
    min-width: 800px;
  }
  th,
  td {
    background: rgb(34, 34, 34);
    text-align: center;
    font-size: 14px !important;
  }
}

.dropdown-menu {
  background: rgb(34, 34, 34);
  left: unset !important;
  right: 0 !important;
  width: 5px !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px !important;
  top: 133% !important;
}

.dropdown-item:hover {
  background: rgb(34, 34, 34);
}

.avatar {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background: url(./img/avatar.png) center/cover no-repeat, #fff;
}

.dropdown-toggle {
  padding: 0;
  border: none !important;
  outline: none;
  &::after {
    display: none;
  }
}

.nav-tabs {
  border: none;
}

.dropdown-item {
  width: 100%;
  text-align: center;
}

#positionInput {
  height: 33.6px;
  font-size: 16px;
}

@media (min-width: 1200px) {
  .searchButton {
    grid-column: 3/4;
  }

  .searchButton:last-child {
    grid-column: 4/5;
  }
}

@media (max-width: 1200px) {
  .filter-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .vscomp-ele {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .filter-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .filter-container {
    grid-template-columns: 1fr;
  }
  .filter-group {
    max-width: 100%;
  }
}
