/* map-info-window.css */
.gm-ui-hover-effect {
    display: none !important;
}

.info-window {
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    width: 320px;
}

.info-window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.info-window-header h3 {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.info-window-header button {
    background: none;
    border: none;
    color: #4e4e4e;
    cursor: pointer;
}

.info-window p {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #4e4e4e;
}

.info-window-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    padding: 0 40px;
}

.action-button {
    padding: 8px 0;
    flex: 1;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: white;
    background-color: #0091c2;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.action-button:hover {
    background-color: #007ba0;
}

.close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button svg {
    stroke-width: 1.2;
    stroke: #000000;
}

/* Mobile View */
@media (max-width: 768px) {
    .info-window {
        font-family: Arial, sans-serif;
        position: relative;
        width: 220px;
    }
    .info-window-buttons {
        display: flex;
        gap: 10px;
        margin-top: 10px;
        padding: 0px;
    }
    .close-button {
        outline: none;
    }
}
