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: 6px;
    text-decoration: none;
    border-radius: 5px;
    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: #2A1468;
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        width: 660px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    
    .logo {
        max-width: 70%;      
          margin-bottom: 0px;
    }
    
    h2 {
        margin: 0 0 10px;
        font-size: 24px;
        color: #000000;
    }
    
    p {
        margin: 0 0 20px;
        color:  #000000;
    }
    
    /* .buttons {
        display: flex;
        justify-content: space-between;
    } */
    
   
    #btn-confirm{
        color: white;
        background: linear-gradient(180deg, #EEAF0E -1.75%, #FFCE00 100.23%);
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }

    #btn-exit {
        color: white;
        background: transparent;
        border: 2px solid gold; /* Changed border color to gold */
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }
    

    #btn-confirm:hover, #btn-exit:hover {
        background: linear-gradient(180deg, #EEAF0E -1.75%, #FFCE00 100.23%);
    }

