/* Container styles */
.greece-map-container {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Height is set dynamically by JS based on map aspect ratio */
    touch-action: none;
}

/* Base tooltip (hover, legacy) */
.svg-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    display: none;
    z-index: 9999;
    line-height: 1.4;
}

/* Click tooltip override */
.svg-tooltip--click {
    display: block;
    pointer-events: auto;
    background: #fff;
    color: #143466;
    border: 1.5px solid #143466;
    border-radius: 6px;
    padding: 12px 14px;
    box-shadow: 0 4px 16px rgba(20, 52, 102, 0.15);
    min-width: 200px;
    max-width: 280px;
    font-size: 14px;
    line-height: 1.5;
}

.svg-tooltip--click a {
    color: #143466;
    text-decoration: underline;
    display: block;
    margin-top: 4px;
    word-break: break-word;
    font-size: 13px;
}

.svg-tooltip--click a:hover {
    color: #0a1f40;
}

/* Zoom Controls */
.greece-map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
}

.greece-map-controls button {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    color: #333;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
}

.greece-map-controls button:hover {
    background-color: #f0f0f0;
    color: #000;
}