
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.results-container {
    backdrop-filter: blur(1px) !important;
}
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    overflow: hidden !important;
}

.toggle-switch {
    position: relative;
    width: 55px;
    height: 26px;
    display: inline-block;
}

    .toggle-switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: red; 
    transition: background-color 0.4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "\f1f6";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
        color: darkblue;
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        transition: transform 0.4s;
        border-radius: 50%;
    }

.active + .slider {
    background-color: green; /* Stato true */
}

    .active + .slider:before {
        content: "\f0f3";
        transform: translateX(26px);
    }


.toast-success {
    background-color: #51A351 !important;
    color: #fff !important;
}

.toast-warning {
    background-color: #ff9800 !important; /* Arancione personalizzato */
    color: #fff !important;
}

.toast-error {
    background-color: #BD362F !important;
    color: #fff !important;
}


.toast-title {
    font-weight: bold;
    color: #fff !important;
}

.toast-message {
    color: #fff !important;
}
/* Di default la X è nascosta */
.pxfd-card .fa-x {
    visibility: hidden;
}

/* Quando passi sopra la card, la X appare */
.pxfd-card:hover .fa-x {
    visibility: visible;
}

/* (Optional) Su dispositivi touch/mobile la X è sempre visibile */
@media (hover: none) and (pointer: coarse) {
    .pxfd-card .fa-x {
        visibility: visible;
    }
}
