.drop-container {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #555;
  color: #444;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
  background: #eee;
  border-color: #111;
}

.drop-container:hover .drop-title {
  color: #222;
}

.drop-title {
  color: #444;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: color .2s ease-in-out;
}

.drop-container.drag-active {
  background: #eee;
  border-color: #111;
}

.drop-container.drag-active .drop-title {
  color: #222;
}

.form-check-input {
    transform: scale(1.5);
}

button#process_btn {
    font-size: 30px;
}

select#option {
    font-size: 20px;
}

.table-wrapper {
  max-height: 350px;
  overflow: auto;
}

.text-primary {
    --ar-text-opacity: 1;
    color: #448c74 !important;
}

.fs-lg {
    font-size: 1.125rem !important;
    font-family: "Inter", sans-serif;
}

.form-switch.mode-switch .form-check-label:first-of-type {
    order: 1;
    margin-right: .625rem;
    color: #448c74;
}

.theme-controller__button {
    align-items: center;
    background: var(--backgroundPrimary);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    max-height: 44px;
    max-width: 44px;
    overflow: hidden;
    transition: all .3s ease;
    width: 44px;
}

.form-check-input:checked {
    background-color: #448c74;
     border-color: #448c74;
    }

.form-check-input:focus {
    box-shadow: none !important;
    border-color: #448c74;
    }

a {
    font-size: 1.20rem !important;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    }

.navbar-nav a:hover {
    color: #448c74 !important;
    }

[data-bs-theme="light"] .navbar {
  background-color: #ffffff;
}

[data-bs-theme="dark"] .navbar {
  background-color: #212529;
}

[data-bs-theme="dark"] .bg-light {
    background-color: #121519 !important;
}

.btn-success {
    background-color: #448c74 !important;
    border-radius: 10px;
}

.btn-success:hover {
    background-color: #37725e !important;
}

.display-5 {
    font-size: 3rem;
    font-weight: 600;
}

.navbar-brand {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  font-style: italic;
}