 /* --- ESTILOS CSS --- */
        :root {
            /* Paleta AstraZeneca / AZTA LA CIMA */
            --primary-color: #E70086;  /* Rosa Magenta Principal */
            --secondary-color: #FCB016; /* Amarillo/Naranja */
            --tertiary-color: #C4D731;  /* Verde Lima */
            --dark-blue: #003865;      /* Azul oscuro corporativo para textos */
            
            --bg-color: #f8f9fa;
            --card-bg: #ffffff;
            --text-main: #333333;
            --text-sec: #666666;
            --shadow: 0 4px 15px rgba(231, 0, 134, 0.15); /* Sombra rosada suave */
        }

        * { box-sizing: border-box; }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            margin: 0;
            padding: 20px;
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Logos Header */
        .logos-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 0 10px;
        }

        .logo-box {
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-box img {
            max-height: 100%;
            max-width: 140px;
            object-fit: contain;
        }

        /* Placeholder styles for logos when images are missing */
        .logo-placeholder {
            font-weight: bold;
            color: var(--dark-blue);
            font-size: 0.9rem;
            text-transform: uppercase;
            border: 2px dashed #ddd;
            padding: 5px 10px;
            border-radius: 8px;
            color: #aaa;
        }

        /* Header Text */
        header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        /* Barra decorativa superior */
        header::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            margin: 15px auto 0;
            border-radius: 2px;
        }

        h1 {
            color: var(--primary-color);
            margin: 0 0 5px 0;
            font-size: 2.2rem;
            font-weight: 800;
        }

        p.subtitle {
            color: var(--text-sec);
            margin: 0;
            font-size: 1.1rem;
        }

        /* Buscador */
        .search-container {
            position: sticky;
            top: 15px;
            z-index: 100;
            margin-bottom: 25px;
        }

        .input-wrapper {
            position: relative;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-radius: 50px;
            background: white;
        }

        input#searchInput {
            width: 100%;
            padding: 18px 25px;
            padding-right: 50px;
            border-radius: 50px;
            border: 2px solid transparent;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
            color: var(--text-main);
        }

        input#searchInput:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(231, 0, 134, 0.1);
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
        }

        /* Lista Resultados */
        .results-container {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .employee-card {
            background: var(--card-bg);
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-left: 6px solid var(--secondary-color); /* Borde amarillo */
            transition: transform 0.2s;
        }
        
        /* Alternar colores de borde para variedad visual */
        .employee-card:nth-child(even) {
            border-left-color: var(--tertiary-color); /* Borde verde */
        }

        .employee-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .employee-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--dark-blue);
        }

        .employee-meta {
            font-size: 0.9rem;
            color: var(--text-sec);
        }

        .team-badge {
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.9rem;
            text-align: right;
            box-shadow: 0 4px 10px rgba(231, 0, 134, 0.3);
            min-width: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .team-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            opacity: 0.9;
            margin-bottom: 2px;
        }

        /* Mensajes de estado */
        .state-message {
            text-align: center;
            color: #999;
            margin-top: 50px;
            display: none;
        }
        
        .state-message svg {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
            color: #ddd;
        }

        footer {
            margin-top: 50px;
            text-align: center;
            font-size: 0.8rem;
            color: #aaa;
            padding-bottom: 20px;
        }
        
        /* Animación */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .employee-card { animation: fadeIn 0.4s ease-out forwards; }