.flex-container {
    display: flex;
    gap: 15px;

    label {
        max-width: 220px;
        word-break: auto-phrase;
    }
}

.proteccion-playas-container {
    margin-top: 40px;
    position: relative;

    h3 {
        text-align: center;
        font-weight: 700;
    }

    .date-text {
        margin-top: 20px;

        .date {
            font-weight: bold;
        }
    }

    .proteccion-playas-list {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 7px;

        .probabilidad-precipitacion,
        .estado-cielo,
        .max-temp,
        .min-temp,
        .water-temp,
        .sensacion-termica,
        .uv-index,
        .warning-iframe {
            display: flex;
            gap: 10px;
            
            .label {
                color: #027db1;
                font-weight: 700;
            }

            .morning,
            .afternoon {

                .title {
                    font-weight: bold;
                }
            }
        }

        .uv-index .value {
            color: #336600;
            font-weight: 700;
        }

        .max-wind-gust,
        .wave-forecast,
        .warning-iframe {
            display: flex;
            flex-direction: column;
            margin-top: 20px;

            .label {
                color: #027db1;
                font-weight: 700;
                margin-bottom: 7px;
            }

            .morning,
            .afternoon {

                .title {
                    font-weight: bold;
                }
            }
        }

        .wave-forecast .values-container {
            display: flex;
            gap: 10px;
        }

        .warning-iframe #contenedor-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid #ccc;
            display: none;
        }
    }
}

.table.estado-playas {
    margin-top: 50px;

    tr th {
        color: #000;
    }
    tr, td, th {
        border: 1px solid #dee2e6;
        align-content: center;
        font-size: 16px;
    }
    a {
        font-size: 16px;
    }

    div.status-container {
        display: flex;
        flex-direction: column;

        .estado {
            font-weight: bold;
            text-align: center;
        }
        .estado.cerrado {
            color: #990000;
        }
        .estado.abierto {
            color: green;
        }

        .icons {
            display: flex;
            justify-content: space-evenly;

            img {
                width: 32px;
                height: 32px;
            }
        }
    }
}

.estado-playas-form .fieldset__wrapper,
.nueve-roquetas-form .fieldset__wrapper {
    display: flex;
    gap: 50px;
}

.nueve-roquetas-container {

    h3 {
        color: #027db1;
        font-weight: bolder;
        margin-bottom: 20px;
    }

    .container-image {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        .relative-container {
            position: relative;
            width: fit-content;

            .icon {
                position: absolute;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;

                img {
                    width: 23px;
                    height: 23px;
                    cursor: pointer;
                }
                
                .tooltip {
                    background-color: white;
                    border: 1px solid #333;
                    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
                    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.2));
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    padding: 10px;

                    img {
                        cursor: unset;
                    }

                    .container-medusas-webcam {
                        display: flex;
                        justify-content: space-evenly;
                    }

                    .flag-container,
                    .wind-container {
                        display: flex;
                        gap: 10px;
                    }
                }

                .tooltip.visible {
                    opacity: 1;
                }

                .tooltip::after {
                    content: "";
                    position: absolute;
                    top: 100%;
                    left: 50%;
                    transform: translateX(-50%);
                    border-width: 6px;
                    border-style: solid;
                    border-color: #fff transparent transparent transparent;
                }

            }

            .icon-aguadulce {
                top: 68px;
                right: 74px;
            }
            .icon-bajadilla {
                top: 103px;
                left: 467px;
            }
            .icon-bajos {
                top: 49px;
                right: 255px;
            }
            .icon-cerrillos {
                top: 78px;
                left: 58px;
            }
            .icon-playa_serena {
                top: 102px;
                left: 191px;
            }
            .icon-romanilla {
                top: 68px;
                right: 460px;
            }
            .icon-salinas {
                top: 49px;
                right: 372px;
            }
            .icon-urbanizacion_roquetas {
                top: 125px;
                left: 324px;
            }
            .icon-ventilla {
                top: 57px;
                right: 168px;
            }


            .webcam {
                position: absolute;

                .webcam-icon {
                    width: 23px;
                    height: 23px;
                }
            }

            .webcam-container-aguadulce {
                top: 172px;
                right: 84px;
            }
            .webcam-container-playa_serena {
                top: 207px;
                left: 287px;
            }
            .webcam-container-romanilla {
                top: 156px;
                right: 469px;
            }
            .webcam-container-salinas {
                top: 146px;
                right: 386px;
            }
            .webcam-container-urbanizacion_roquetas {
                top: 221px;
                left: 429px;
            }
            .webcam-container-ventilla {
                top: 159px;
                right: 186px;
            }
        }

        .leyenda {
            display: flex;
            flex-direction: row;
            gap: 17px;
            border: 1px solid #DDD;
            margin-top: 20px;
            padding: 20px;

            .leyenda-item {
                display: flex;
                gap: 10px;
                align-items: center;
                
                .icono img {
                    width: 23px;
                    height: 23px;
                }

                .texto {
                    font-size: 11px;
                }
            }
        }
    }
}
