* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* CONTAINER */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    flex: 1;
    overflow: hidden;
}

/* CALENDAR WRAPPER: conté i escala el iframe */
.calendar-container {
    position: relative;
    width: 100%;
    height: 100vh;
    /* O la mida que tinguis */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Aquesta és la capa que taparà els suggeriments */
.hide-google-stuff {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    /* Amplada suficient per tapar icones de la dreta */
    height: 45px;
    /* Alçada de la barra superior */
    background-color: white;
    /* Ha de ser del mateix color que el fons del calendari */
    z-index: 10;
    pointer-events: none;
    /* Perquè no interfereixi si algú clica a prop */
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* El iframe té mida fixa de Google (800x600), el JS l'escalarà */
#google-calendar {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 600px;
    border: none;
    transform-origin: top left;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .container {
        padding: 10px;
    }
}