.step-detail {
    color: green;
    font-weight: 500;
    margin-top: 4px;
}

.item-subtitle {
    color: #666;
    font-size: 0.95rem;
}

button.landBtn,
button.buildBtn,
button.treeBtn {
    width: 119px;
    height: 35px;
    font-family: 'Prompt', sans-serif;
    font-size: 13px;
    background: linear-gradient(to bottom, #3f83e9 0%, #9676f7 100%);
    color: white;
    padding: 0.8em 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

button.landBtn:focus,
button.buildBtn:focus,
button.treeBtn:focus {
    outline: none;
    box-shadow: none;
}




/* Modal ทั้งหมด */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-info {
    margin-top: 0%;
    padding: 20px;
    background-color: white;
    max-width: 40%;
    max-height: 88%; 
    overflow-y: auto;
    position: relative;
    border-radius: 10px;
}


.modal-content {
    margin-top: 0%;
    padding: 20px;
    background-color: white;
    width: 80%;
    height: 67%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 7px;
    right: 39px;
    font-size: 40px;
    font-weight: bold;
    color: #f73e3e;
    cursor: pointer;
    z-index: 1001;
}

.modal-body-scroll {
    position: absolute;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 9px;
    overflow-y: auto;
    padding: 20px;
}

.modal-body-scroll::-webkit-scrollbar {
    width: 8px;
}

.modal-body-scroll::-webkit-scrollbar-thumb {
    background: #1354A2;
    border-radius: 10px;
}

.modal-body-scroll::-webkit-scrollbar-thumb:hover {
    background: #0d3c78;
}

.modal-body-scroll {
    scrollbar-color: #1354A2 transparent;
}


@media (max-width: 576px) {
    .modal-content {
        max-width: 90%;
        top: 5%;

    }

    .modal-info {
        max-width: 90%;
    }
}