.meteo-ice-graph-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 4vh 4vw;
    box-sizing: border-box;
    min-height: 100vh;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.meteo-ice-graph-title {
    display: none;
}

.meteo-ice-graph-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.meteo-ice-graph-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.25rem 1rem 1.5rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meteo-ice-graph-lake-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: #0f172a;
}

@media (max-width: 1024px) {
    .meteo-ice-graph-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .meteo-ice-graph-grid {
        grid-template-columns: 1fr;
    }
}

.meteo-ice-graph-canvas-wrapper {
    position: relative;
    width: 100%;
    min-height: 220px;
}

.meteo-ice-graph-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.meteo-ice-graph-prediction-text {
    color: #4b5563;
    font-style: italic;
}

