.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  filter: blur(10px);
  -webkit-filter: blur(10px); /* Safari 9+ */
  opacity: 0.5; /* Set the opacity to 50% */
}
.not-clickable {
  cursor: default !important;
  pointer-events: none !important;
}

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

@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;
  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: #4ea4ff;
}

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

.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-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;
}

.dashboard-container {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.75rem;
}
