        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }

        /* Header */
        header {
            background-color: white;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }


.user-icon {
    width: 20px;
    height: 20px;
    fill: white;
    flex-shrink: 0;  /* Evita que el icono se comprima */
}

.login-btn {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.login-btn {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;  /* Esto evita que el texto se divida en varias líneas */
}
        .login-btn:hover {
            background-color: #ff5520;
        }

        /* Navigation */
        nav {
            background-color: #2c3e7e;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-index{
            background-color: #2c3e7e;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
            align-items: center; 
        }
        
        /* Footer */
        footer {
            background-color: #2c3e7e;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }