body {
    font-family: Arial, sans-serif;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.crime-items {
    padding: 20px;
    border: 1px solid #ddd;
}

.cmn--btn {
    background-color: #007bff;
    color: #fff;
    padding: 12px 29px;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
}

.gameModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    /* background: rgba(0, 0, 0, 0.5); */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}

.icon-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.icon-button.close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.icon-button.fullscreen {
    position: absolute;
    top: 10px;
    right: 40px;
}

.game-iframe {
    width: 100%;
    height: calc(100% - 40px);
    border: none;
}

    /* Optional: Add CSS for animation effects */
    @keyframes valueChange {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }


    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000000;
    }
    
    .popup-content {
        background: #08453A; /* Updated background color */
        padding: 30px;
        text-align: center;
        border-radius: 15px; /* Slightly increased border radius for a softer look */
        width: 600px; /* Adjusted width for better proportions */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Increased shadow for depth */
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .logo {
        max-width: 60%;      
        margin-bottom: 15px; /* Added margin for spacing */
    }
    
    h2 {
        margin: 0 0 15px;
        font-size: 26px; /* Increased font size for better visibility */
        color: #ffffff; /* Changed text color for contrast */
    }
    
    p {
        margin: 0 0 20px;
        color: #ffffff; /* Ensured text is white for readability */
    }
    
    .buttons {
        display: flex;
        justify-content: center; /* Center the buttons instead of spacing them evenly */
        gap: 10px; /* Adjust the gap to control the space between buttons */
    }
    
    #btn-confirm, #btn-exit {
        color: white;
        background: #F57F31;
        border: none;
        padding: 12px 24px; /* Increased padding for better touch targets */
        border-radius: 8px; /* Slightly larger border radius */
        cursor: pointer;
        font-size: 18px; /* Increased font size for readability */
        transition: background 0.3s; /* Added transition for smooth hover effect */
    }
    
    #btn-confirm:hover, #btn-exit:hover {
        background: #F57F31;
    }
    

