/* styles-base.css */
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  filter: blur(10px) brightness(0.7);
  -webkit-filter: blur(10px) brightness(0.7); /* Safari 9+ */
  opacity: 0.5; /* Set the opacity to 50% */
}

.not-clickable {
  cursor: default !important;
  pointer-events: none !important;
}

.footer {
  border-top: 2px solid #06306e;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1029;
}

.disabled-link {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}

.disabled-link-no-opcty {
  pointer-events: none;
  cursor: default;
}

@media (min-width: 1200px) {
  .container {
    max-width: 96% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 98% !important;
  }
}

@media (min-width: 800px) and (max-width: 991px) {
  .container {
    max-width: 99% !important;
  }
}

@media (max-width: 800px) {
  .container {
    max-width: 100% !important;
  }
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.container {
  margin-top: 20px;
  margin-bottom: 42px;
  flex: 1;
}

/* change boostrap buttons */

.btn-primary {
  background-color: #1f63bd;
}

.btn-danger {
  background-color: #b51f23;
}
/* Add this style block in the head section or in an external CSS file */

th,
td {
  font-size: 12px;
  align-items: center;
  vertical-align: center;
}

th {
  cursor: pointer;
}

.sortable {
  cursor: pointer;
}

.sorted {
  color: #35436d;
}

.table-hover tbody tr:hover {
  background-color: #4fde4f69;
}

.form-control::placeholder {
  color: #d2d2d2;
  opacity: 1;
}

.btn-magenta {
  background-color: rgb(230, 28, 230);
  color: white;
}

.btn-magenta:hover,
.btn-magenta:active,
.btn-magenta:focus {
  background-color: rgb(230, 28, 230);
  color: white;
}

.btn-orange {
  background-color: rgb(230, 101, 12);
  color: white;
}

.btn-orange:hover,
.btn-orange:active,
.btn-orange:focus {
  background-color: rgb(230, 101, 12);
  color: white;
}

.btn-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  padding: 5px;
}

.arrow-down::before,
.arrow-up::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(135deg);
}

.arrow-up::before {
  transform: rotate(-45deg);
}

.cancel-btn {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}
.proponi-btn {
  border-top-left-radius: 0.33rem !important;
  border-bottom-left-radius: 0.33rem !important;
  margin-left: 5px !important;
}

.tooltip .tooltip-inner {
  max-width: 900px !important;
}

.gray-text {
  color: gray;
}

/* Stile per il menu dropdown */
.dropdown-menu {
  background-color: #212529 !important;
  border: 1px solid #373b3e !important;
}

/* Stile per le label del form-check nel dropdown */
.dropdown-menu .form-check-label {
  color: #ffffff !important;
}

/* Stile per i contenitori form-check */
.dropdown-menu .form-check {
  color: #ffffff !important;
  background-color: #212529 !important;
  padding: 0.25rem 1.5rem;
}

/* Stile hover per migliorare l'interattività */
.dropdown-menu .form-check:hover {
  background-color: #2c3034 !important;
}

/* Stile per le checkbox stesse */
.dropdown-menu .form-check-input {
  background-color: #373b3e;
  border-color: #495057;
}

/* Stile per le checkbox quando selezionate */
.dropdown-menu .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
