
/* estilos para enlases marquee */


    .marquee-container {
    width: 100%;
    background-color: #222; /* Fondo oscuro */
    padding: 5px 0;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-container marquee {
    font-size: 16px; /* Texto pequeño */
    color: #ffcc00; /* Color amarillo */
}

.marquee-container a {
    color: #ffcc00; /* Color de los enlaces */
    text-decoration: none;
    margin: 0 10px; /* Espaciado entre enlaces */
    font-weight: bold;
}

.marquee-container a:hover {
    color: #ff6600; /* Cambia de color al pasar el mouse */
}


/* estilos para enlases marquee fin---------------------------*/


   .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .noticias-carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 10px;
            padding: 10px;
            background: #f9f9f9;
            width: fit-content; /* Asegura que el contenedor sea lo suficientemente ancho */
        }

        .noticia {
            min-width: 150px;
            text-align: center;
            cursor: pointer;
            background: white;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .noticia img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }

        .noticia p {
            font-style: italic;
            font-weight: bold;
            color: #d35400;
            font-size: 16px;
            margin-top: 10px;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }

/*  otros estilos de mensajes //////////////*/

 #downloadMessage {
            display: none;
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #f8d7da;
            color: #721c24;
            padding: 10px;
            border: 1px solid #f5c6cb;
            border-radius: 5px;
            z-index: 1000;
        }
        
         .login-warning {
        color: red; /* Color del texto */
        font-size: 15px; /* Tama���o de la fuente */
        font-weight: bold; /* Negrita */
        background-color: #f8d7da; /* Fondo de color tenue */
        padding: 8px; /* Espaciado interno */
        border: 1px solid #f5c6cb; /* Borde del mensaje */
        border-radius: 5px; /* Bordes redondeados */
        margin: 10px 0; /* Margen superior e inferior */
        text-align: center; /* Centrar el texto */
    }
    .login-warning a {
        color: #a00000; /* Color del enlace */
        text-decoration: underline; /* Subrayado del enlace */
    }
        .location-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #69d368 ;
    color: blue;
    border: 1px solid #b0c4de;
    font-size: 18px;
    text-align: center;
    position: relative;
    transition: opacity 0.5s ease;
     font-weight: bold; /* Negrita */
}

.location-message.hidden {
    opacity: 0;
    visibility: hidden;
}


  
        .welcome-message {
            background-color: #f9f9f9;
            border: 1px solid #cce5ff;
            color: #0056b3;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            font-size: 18px;
            margin-top: 10px;
            animation: fadeIn 1s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
    
    
    
    
    
    
    
    .message-container {
    background-color: #f0f8ff; /* Fondo azul claro */
    color: #333;
    border: 1px solid #b0c4de; /* Borde azul */
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: opacity 1s ease-out;
}

.general-message {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.login-warning {
    font-size: 16px;
}

.login-warning a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.login-warning a:hover {
    text-decoration: underline;
}
