/**
 * WBD Event Manager - Event Map Styles
 */
.gmnoprint{
    display: none;
}
.wbd-stats-curve{
    position: absolute !important;
    left: -15%;
}
/* Map Container */
.wbd-mke-map-wrapper {
    width: 100%;
    margin: 100px 0;
    display: flex;
    justify-content: center;
}

.wbd-mke-event-map {
    width: min(400px, 80vw);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
}

.wbd-mke-map-message {
    padding: 40px 20px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 10px;
    color: #666;
    font-size: 16px;
}

/* GOOGLE MAPS INFO WINDOW */
.info-window {
    padding: 20px 20px 30px 20px;
    max-width: 320px;
    text-align: center;
    border-radius: 10px;
}

.info-window .logo {
    margin: 10px auto 10px auto;
}

.info-window .logo img {
    max-height: 50px;
    float: none;
    margin: auto;
    border-radius: 20px;
    margin-top: -60px;
    position: absolute;
    left: calc(50% - 30px);
}

.info-window h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 500;
    font-size: 14px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-window p {
    margin: 8px 0;
    color: #333;
    font-size: 13px;
    font-weight: bold;
}

.info-window .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.info-window .button {
    display: inline-block;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none !important;
}

.info-window .website {
    background-color: #cbe63e;
}

.info-window .website:hover {
    background-color: #daf46a;
}

.info-window .maps {
    background-color: #4443e9;
}

.info-window .maps:hover {
    background-color: #5e5cfa;
}

.info-window .button svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.info-window .button.hidden {
    display: none !important;
}

/* Google Maps Info Window stillendirme */
.gm-style .gm-style-iw-c {
    padding: 0 !important;
    border-radius: 10px !important;
    background-color: #fff !important;
    max-height: 200px !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
}

.gm-ui-hover-effect {
    top: 5px !important;
    right: 5px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    #wbd-mke-event-map {
        height: 400px;
    }

    .info-window {
        max-width: 280px;
        padding: 15px 15px 20px 15px;
    }

    .info-window .buttons {
        flex-direction: column;
        gap: 8px;
    }

    .info-window .button {
        width: 100%;
    }
}
@media (max-width: 960px) {
    .wbd-stats-curve{
        display: none;
    }
}

.wbd-mke-map-circle .wbd-mke-event-map {
    border-radius: 50%;
}

/* Static/Non-interactive map */
.wbd-mke-map-static .wbd-mke-event-map {
    pointer-events: none;
}