.container  {
    height: 90vh;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin: 40px auto;
}
.completed {
  text-decoration: line-through;
  color: gray;
}
  .dropdown-menu-right {
    right: 0;
    left: auto;
  }

  .switch-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Same custom switch styles from earlier */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.switch-label {
  font-weight: bold;
  font-size: 14px;
}

body {
  background-image: url('imgs/autumn_light.png'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.task-tab a  {
    font-size: 24px;
}

li.list-group-item {
    font-size: 24px;
}

li.list-group-item span.btn-xs {
    font-size:22px;
}

.btn-one-time {
    color: #5e5e5e;
    background-color: #fff3b0;
    border-color: #fff3b0;
}

.btn-diario {
    color: #fff;
    background-color: #335c67;
    border-color: #335c67;
}

.btn-semanal {
    color: #fff;
    background-color: #e09f3e;
    border-color: #e09f3e;
}

.btn-mensual {
    color: #fff;
    background-color: #9e2a2b;
    border-color: #9e2a2b;
}

.btn-casa {
    color: #fff;
    background-color: #b57770;
    border-color: #b57770;
}

.btn-personal {
    color: #fff;
    background-color: #624046;
    border-color: #624046;
}

.btn-externos {
    color: #fff;
    background-color: #d8ae48;
    border-color: #d8ae48;
}

.btn-animales {
    color: #fff;
    background-color: #9f6949;
    border-color: #9f6949;
}

.btn-todos {
    color: #fff;
    background-color: #540b0e;
    border-color: #540b0e;
}

div.dropdown button {
    font-size: 24px;
}

ul.dropdown-menu li a {
    font-size: 16px;
}

input[type="checkbox"]{
  width: 16px;
  height: 16px;
  cursor: pointer;
  border-radius: 8px;
  margin: 0;
  margin-right: 10px;
  vertical-align: text-top;
}

.mb-2 {
  margin-bottom: 8px;
}