.form-container {
  background-color: var(--bright-white);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
@media (min-width: 576px) {
  .form-container {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .form-container {
    padding: 2rem;
  }
}

form {
  max-width: 100%;
  margin: 0 auto;
}
form .form-group {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  form .form-group {
    margin-bottom: 1.5rem;
  }
}
form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--color-body);
}
form .form-control {
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  width: 100%;
  transition: all 0.3s ease;
}
@media (min-width: 576px) {
  form .form-control {
    padding: 0.75rem 1rem;
  }
}
form .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 150, 136, 0.25);
  outline: none;
}
form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}
form .form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
form .form-check .form-check-input {
  margin-right: 0.5rem;
}
form .form-check .form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
form .form-check .form-check-label {
  margin-bottom: 0;
  font-weight: normal;
}
form .btn {
  background-color: var(--bs-primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
form .btn:hover {
  background-color: rgb(0, 99, 89.76);
  transform: translateY(-2px);
}
form .btn:active {
  transform: translateY(0);
}

.filter-form .row {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .filter-form .row {
    margin-bottom: 1rem;
  }
}
.filter-form .form-group {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .filter-form .form-group {
    margin-bottom: 1rem;
  }
}
.filter-form .d-flex.flex-wrap {
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .filter-form .d-flex.flex-wrap {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

.ausgaben-list.elevated {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.ausgaben-list .col-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

table.break-table-on-small {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
table.break-table-on-small td {
  padding: 0.75rem;
  vertical-align: top;
}
@media (max-width: 768px) {
  table.break-table-on-small {
    display: block;
  }
  table.break-table-on-small tr, table.break-table-on-small td {
    display: block;
    width: 100%;
  }
  table.break-table-on-small td {
    margin-bottom: 0.5rem;
  }
}

/* Image upload and preview styles */
.image-upload-container {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .image-upload-container {
    margin-bottom: 1rem;
  }
}

.image-preview-container {
  margin-top: 0.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .image-preview-container {
    max-width: 300px;
  }
}

.image-preview {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: block;
}

/*# sourceMappingURL=forms.css.map */
