
/****** semi transparent sticky background for Quiz Location Post template buttons **************/
#bottom-buttons-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8); 
    z-index: 999; 
    pointer-events: none;
  }

.footer-round-button {
    border: none;
    border-radius: 50%;
    position: fixed;
    bottom: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
    color: white;
    text-decoration: none;
    z-index: 9999;

    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }



/********** Coin button with display of points - link to coupon list **************/
.display-score {
    position: relative;
    width: 36px;
    height: 36px;
    text-align: center;
    background-image: url('https://citygameseattle.com/wp-content/uploads/2025/01/icons8-coin-64.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    font-size: 15px;
    border-radius: 6px;
  }
  
  .display-score a.full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
  }
  
  .display-score .score-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    color: white;
    font-weight: bold;
    pointer-events: none; /* Let clicks pass through */
  }
  
  .display-score a.full-link {
    pointer-events: auto; /* Ensure link still works */
  }

/*********************************************************************/
/**************** Jo's modicifications for Sticky Navigation Buttons*/
/* Common styles for both buttons */
.post-navigation {
    display: block;
    width: 50px; /* Adjust width */
    height: 50px; /* Adjust height */
    background-size: cover; /* Ensure the image covers the button */
    background-repeat: no-repeat; /* Prevent tiling */
    background-position: center; /* Center the image */
/*    color: white;*/
    border: none; /* Remove any borders */
    position: fixed; /* Make the buttons sticky */
    top: 95%; /* 50% to Center vertically */
    transform: translateY(-50%); /* Adjust for centering */
    z-index: 1000; /* Ensure buttons are on top */
    cursor: pointer; /* Change cursor to pointer */
}

/* Default styles */
#previous-post {
    left: 10px;
    background-image: url('/wp-content/uploads/2024/12/ARROW-LEFT-RED_64.png');
}
#next-post {
    right: 10px;
    background-image: url('/wp-content/uploads/2024/12/ARROW-RIGHT-RED_64.png');
}

/* Category-specific styles */
/* For Category henry-murals */
body.category-henry-murals #previous-post {
    left: 10px;
    background-image: url('/wp-content/uploads/2025/01/fish-blue-left-64.png'); 
}
body.category-henry-murals #next-post {
    right: 10px;
    background-image: url('/wp-content/uploads/2025/01/fish-red-right-64.png'); 
}

/* For Category seattle-quiz */
/*body.category-seattle-quiz #previous-post {
    left: 5px;
    background-image: url('/wp-content/uploads/2025/04/icons8-arrow-round-L-50.png'); 
}

body.category-seattle-quiz #next-post {
    right: 5px;
    background-image: url('/wp-content/uploads/2025/04/icons8-arrow-round-R-50.png');
}*/


/*Add hover effects for better user experience*/
#previous-post:hover, #next-post:hover {
    opacity: 0.8; /* Slightly fade on hover */
}

/* Adjust sizes or positioning for mobile devices using media queries*/
@media (max-width: 768px) {
    .post-navigation {
        width: 40px;
        height: 40px;
/*        top: 60%; /* Position the element at 50% from the top */
/*        transform: translateY(-60%); /* Adjust to center it perfectly */
        bottom: auto; /* Remove the bottom positioning */
/*        top: auto;
        bottom: 10px; /* Stick to bottom on smaller screens */
    }

    #previous-post {
        left: 5px;
    }

    #next-post {
        right: 5px;
    }
}

/***************************************************************************************
/* Social Sticky Icons fix for Safari on iPhone15 */
@media only screen and (min-device-pixel-ratio: 3) and (max-width: 430px) {
    .stssm-social-icons {
        transform: scale(1);
    }
}


  /**************** Jo's modicifications for Popup Maker*/
/* Center popup-close button */
.center-popup-close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ensures it spans the row */
}

.center-popup-close img {
    margin: 0 auto; /* Centers the image itself */
    display: block;
}

  /*****************************************************************************************/
/* buttons for choice Popup Maker popupups - for Coupons */
.coupon-choice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Space between buttons */
    margin-top: 20px;
  }
  
  .choice-icon-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  /*.choice-icon-button img {
    width: 64px;
    height: 64px;
  }*/
  
  .choice-icon-button:hover {
    transform: scale(1.2);
  }
  