﻿.no-scroll {
    overflow: hidden;
}

/* Badge Text (SUB Badge) */
.info-badge-txt {
    color: #00ceff;
    font-weight: 600;
    font-size: 18px; /* Increased font size for the badge */
    margin-right: 5px; /* Add spacing after the text */
}

/* Dark overlay */
.info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Dark transparent background */
    z-index: 10;
    display: none; /* Hidden by default */
}

/* Info Popup container */
.info-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; /* Increased width for the popup */
    background: #0a3049;
    color: white;
    padding: 30px; /* Increased padding */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 11;
    display: none; /* Hidden by default */
}

/* Close button */
.info-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 26px; /* Slightly larger */
    color: white;
    cursor: pointer;
}

/* Info Popup header with image and title */
.info-header-section {
    display: flex;
    align-items: center;
    gap: 15px; /* Increased gap between avatar and name */
}

.info-avatar {
    border-radius: 50%;
    width: 60px; /* Increased avatar size */
    height: 60px;
}

.info-logo {
    max-width: 200px; /* Default maximum size for desktop */
    width: 100%; /* Ensures the logo scales down if the container is smaller */
    height: auto; /* Keeps the aspect ratio */
    display: block;
    margin: auto; /* Center the logo and add space below it */
}

/* Title and Description */
.info-title {
    margin-top: 10px;
    color: #f0f0f0;
    font-size: 22px; /* Increased title font size */
}

.info-text {
    text-align: center;
    margin-top: 20px; /* Adds spacing between title and text */
    color: #ccc; /* Softer text color */
    font-size: 15px;
}

    .info-text a:link, .info-text a:visited {
        color: #e0548d;
    }

.info-description-list {
    list-style: none;
    padding: 0;
}

    .info-description-list li {
        margin: 12px 0; /* Increased margin for better spacing */
        font-size: 16px; /* Increased font size for list items */
        display: flex;
        align-items: center;
    }

    .info-description-list i {
        margin-right: 12px; /* More space between icons and text */
        color: #ff69b4; /* Color for the icons */
    }

    .info-description-list strong {
        color: #ff69b4; /* Pink highlight for specific items */
    }

/* Confirmation button */
/* Confirmation button container */
.info-confirm-section {
    text-align: center;
    margin: 25px 0; /* Increased margin */
    display: flex;
    justify-content: center; /* Centers the buttons */
    gap: 15px; /* Adds a gap between the buttons */
}

/* Agree and close button */
.info-confirm-btn.agree-btn {
    background-color: #e0548d;
    color: white;
    padding: 12px 24px; /* Standard padding for a larger button */
    border: none;
    border-radius: 5px;
    font-size: 18px; /* Font size for Agree button */
    cursor: pointer;
    flex: 1; /* Makes buttons flexible to maintain equal width */
    max-width: 200px; /* Set a max width for the Agree button */
}

    .info-confirm-btn.agree-btn:hover {
        background-color: #ff4da6;
    }

/* Decline button */
.info-confirm-btn.decline-btn {
    background-color: #f0f0f0;
    color: #555;
    padding: 10px 18px; /* Smaller padding for a smaller button */
    border: none;
    border-radius: 5px;
    font-size: 16px; /* Slightly smaller font size for Decline button */
    cursor: pointer;
    flex: 0 0 auto; /* Prevent the Decline button from stretching too much */
    min-width: 140px; /* Set a smaller max width for the Decline button */
}

    .info-confirm-btn.decline-btn:hover {
        background-color: #d0d0d0;
    }

.info-note {
    font-size: 14px; /* Increased note font size */
    color: #b3b3b3;
    text-align: center;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    /* Tablet devices */

    .info-logo {
        max-width: 200px; /* Reduce the logo size on tablets */
    }

    .info-popup {
        width: 90%; /* Responsive popup width */
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .info-title {
        font-size: 20px; /* Adjust title size for tablets */
    }

    .info-description-list li {
        font-size: 15px; /* Slightly smaller font size for list items */
    }

    .info-confirm-btn {
        padding: 10px 20px; /* Adjust button padding for tablets */
        font-size: 16px; /* Adjust button font size */
    }
}

@media (max-width: 480px) {
    /* Mobile devices */
    .info-logo {
        max-width: 175px; /* Further reduce the logo size on mobile */
    }

    .info-popup {
        width: 95%; /* Full width for small devices */
        padding: 15px; /* Adjust padding */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .info-title {
        font-size: 18px; /* Adjust title size for mobile */
    }

    .info-description-list li {
        font-size: 14px; /* Slightly smaller font for mobile */
    }

    .info-confirm-btn {
        padding: 8px 15px; /* Adjust button padding for mobile */
        font-size: 15px; /* Adjust button font size */
    }

    .info-avatar {
        width: 50px;
        height: 50px; /* Slightly smaller avatar for mobile */
    }

    .info-close-btn {
        font-size: 22px; /* Slightly smaller close button */
    }
}
