/* Dialogue Box */
.dialogue-box {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    display:none;
}

.dialogue-box.show {
    opacity: 1;
    display:block;
}

/* NPC Name */
.npc-name {
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

/* Dialogue Text */
.dialogue-text {
    font-size: 16px;
    line-height: 1.5;
    color:#fff;
}

/* Click to continue */
.continue {
    font-size: 14px;
    text-align: right;
    color: #aaa;
    margin-top: 10px;
    cursor: pointer;
}
.inputButton {
    color:white;
    border-radius: 5px;
    padding:3px;
    border:#ffffff solid 3px;
    background-color: #005f99;
    transition:background-color 0.2s linear;
}

.inputButton:hover {
    background-color: #007acc;
}