/* ——— popup-style.css ——— */
/* box esterno del popup */
.airaga-popup-wrapper .popup{
    width: 500px;
    background: #333;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,.4);
    padding: 35px;
    position: relative;  /* Added for arrow positioning */
    overflow: visible;   /* Changed from hidden to allow arrow to show */
    z-index: 9999999999999 !important;
    margin-top: -35px;
}

/* Add this to create the arrow on the right side */
/* Add this to create the arrow on the right side */
.airaga-popup-wrapper .popup:after {
    content: '';
    position: absolute;
    right: -10px;  /* Position outside the popup */
    top: 5px;     /* Adjusted to align with Dream Range at the top */
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #333;  /* Same color as popup background */
    /* No clear: both here since this is for the arrow */
}

/* Keep your existing clearfix separate */
.airaga-popup-wrapper .popup::after {
    content: '';
    display: block;
    clear: both;
}



/* tabella caratteristiche: nessun bordo visibile */
.airaga-popup-wrapper .popup table{
    width: 100%;
    border-collapse: collapse;
    border: 0;
}
.airaga-popup-wrapper .popup table td{
    border: 0;
    padding: 2px 0;            /* spazio verticale leggero */
}
/* colonne */
.airaga-popup-wrapper .col1 {
    width: 40%;    /* Increased from 30% */
    float: left;
    padding-right: 15px;
}

.airaga-popup-wrapper .col2 {
    width: 60%;    /* Decreased from 70% */
    float: left;
}

/* Make sure images can be properly sized */
.airaga-popup-wrapper .popup img {
    max-width: 100%;       /* Image can fill its container */
    height: auto;          /* Maintain aspect ratio */
    display: block;        /* Remove any extra space below */
    margin-bottom: 10px;   /* Add some space below the image */
}
/* clearfix */
.airaga-popup-wrapper .popup::after{
    content: '';
    display: block;
    clear: both;
}

/* For the image sizing */
.airaga-popup-wrapper .popup img {
    max-width: 100%;  /* Make image responsive */
    height: auto;     /* Maintain aspect ratio */
    display: block;   /* Remove any extra space below the image */
}

/* -------- Popup ancorato al bordo sinistro della pagina -------- */
.airaga-popup-wrapper{
    position: fixed !important;   /* rispetto alla viewport */
    left: 10px !important;        /* sempre a 0 dal bordo sinistro */
    right: auto !important;       /* annulla eventuali calcoli JS */
    z-index: 9999999999999 !important;
}