.map-container {
    width: 100%;
    min-height: 400px;
    height: 60vh;
    position: relative;
    overflow: auto;
}

svg {
    width: 100%;
    min-width: 800px; /* Ensure minimum width for small screens */
    height: 100%;
    min-height: 400px;
}

.country {
    stroke: #fff;
    stroke-width: 0.5px;
    fill: #e9ecef;
}

.north-america {
    fill: #ff7675;
    cursor: pointer;
}

.europe {
    fill: #74b9ff;
    cursor: pointer;
}

.asia {
    fill: #55efc4;
    cursor: pointer;
}

.australia {
    fill: #ffeaa7;
    cursor: pointer;
}

.tooltip {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    font-size: 14px;
    display: none;
    z-index: 1000;
}

@media (max-width: 768px) {
    .map-container {
        height: 50vh;
        min-height: 300px;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .tooltip {
        max-width: 150px;
        font-size: 12px;
        padding: 5px;
    }

    .modal-body {
        padding: 15px;
        font-size: 14px;
    }
}

.modal-body {
    padding: 20px;
    line-height: 1.6;
}

