/* Contenedor del perfil */
.perfil-container {
        display: flex;
        align-items: center;
        background: #0f3460;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    /* Imagen de perfil */
    #profileImage {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid white;
        margin-right: 15px;
    }

    /* Información del usuario */
.perfil-info {
        display: flex;
        flex-direction: column;
        color: white;
    }

    /* Estado del usuario */
.status {
        display: flex;
        align-items: center;
        margin-top: 5px;
    }

.status-circle {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
        margin-right: 5px;
    }

    /* Recuadro de mensaje temporal */
.message-box {
        background: #533483;
        padding: 15px;
        border-radius: 5px;
        color: white;
        font-size: 14px;
    }
       /* Contenedor */
.marquee-container {
            width: 100%;
            overflow: hidden;
            background: black;
            padding: 10px 0;
        }

        /* Texto en movimiento */
.marquee-text {
            display: inline-block;
            white-space: nowrap;
            font-size: 20px;
            font-weight: bold;
            color: white;
            animation: moveText 10s linear infinite;
        }

        /* Animación */
@keyframes moveText {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(-100%);
            }
        }
        /* Estilos generales */
        body {
            font-family: Arial, sans-serif;
            background-color: #1a1a2e;
            color: #e0e0e0;
            margin: 0;
            padding: 0;
        }
        
        /* Contenedor principal */
        .container {
            width: 80%;
            margin: auto;
            background: #16213e;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
        }

        /* Encabezado con imagen */
        .header {
            text-align: center;
        }

        .header img {
            width: 100%;
            max-height: 300px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Menú de navegación */
        .menu {
            display: flex;
            justify-content: space-around;
            background: #533483;
            padding: 10px;
            border-radius: 5px;
        }

        .menu a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .menu a:hover {
            background: #e94560;
        }

        /* Contenido principal */
        .content {
            display: flex;
            margin-top: 20px;
        }

        /* Sidebar */
        .sidebar {
            width: 25%;
            background: #0f3460;
            padding: 10px;
            border-radius: 5px;
        }

        .sidebar h2 {
            color: #f8f9fa;
        }

        .sidebar ul {
            list-style: none;
            padding: 0;
        }

        .sidebar ul li {
            margin: 10px 0;
        }

        .sidebar ul li a {
            color: #e0e0e0;
            text-decoration: none;
            padding: 8px;
            display: block;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .sidebar ul li a:hover {
            background: #e94560;
        }

        /* Sección principal */
        .main {
            width: 75%;
            padding: 10px;
        }

        .main h2 {
            color: #f8f9fa;
        }

        .tab-content {
            display: none;
        }

        .active {
            display: block;
        }

        /* Botones */
        button {
            background-color: #e94560;
            color: white;
            border: none;
            padding: 10px 15px;
            margin: 5px;
            cursor: pointer;
        border-radius: 5px;
            transition: background 0.3s ease;
        }

        button:hover {
            background-color: #ff6b81;
        }

        /* Inputs */
        input {
            padding: 10px;
            margin: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background: #16213e;
            color: white;
        }

        input::placeholder {
            color: #aaa;
        }

        /* Footer */
        .footer {
            background: #0f3460;
            color: white;
            text-align: center;
            padding: 10px;
            margin-top: 20px;
            border-radius: 0 0 10px 10px;
        }