.measure-btn {
    background: #fdee00;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    z-index: 10;
}

.measure-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
}

.measure-modal-content {
    background: black;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.measure-modal-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.measure-modal-content button {
    background: #fdee00;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.measure-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: white;
}
