#game-container {
    width: 280px;
    height: 200px;
    border: 1px solid #75e4de;
    background-color: rgba(0, 27, 24, 0.9) !important;
    background-image: url('../images/campodetiro.png');
    background-size: cover;
    position: relative;
    margin-bottom: 10px;
}

.target {
    width: 50px;
    height: 50px;
    background-image: url('../images/target-silhouette.png');
    background-size: cover;
    position: absolute;
    cursor: pointer;
    transition: opacity 0.25s ease-out;
    opacity: 1;
}

.target.clicked {
    opacity: 0;
    pointer-events: none;
}

/* Updated notice styles */
.notice {
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.notice p {
    margin: 0;
}

.notice-success {
    background-color: rgba(0, 163, 42, 0.1);
    border: 1px solid #00ed3d !important;;
    color: #00ed3d !important;;
}

.notice-danger {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #ee5f5b !important;
    color: #ee5f5b !important;}

.login .notice-success {
    border-color: #00ed3d !important;
    color: #00ed3d !important;
}

.login .notice-danger {
    border: 1px solid #ee5f5b !important;
    color: #ee5f5b !important;
}

#register.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#retry-game {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
}

/* Ensure notices are visible */
#mini-game-verification .notice {
    display: block;
    clear: both;
}