#weather-graphs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px;
}

.graph {
    width: 30%;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    background-color: #fff;
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    pointer-events: none;
    font-size: 12px;
}

@media (max-width: 768px) {
    .graph {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .graph {
        width: 100%;
    }
}

/* Add styles for mobile navigation (zoom, scroll) */
.graph {
    touch-action: none; /* Disable default touch actions */
    overflow: hidden; /* Hide overflow content */
}
